From 446a488e6aa0c0f9475e570dbf83fb2e03843a3d Mon Sep 17 00:00:00 2001 From: "Jason R. Coombs" Date: Thu, 22 Dec 2022 16:34:27 -0500 Subject: [PATCH] Move tests to testing as pytest requires tests to be in testing to work with import-mode=importlib. Ref pytest-dev/pytest#8110. --- {tests => testing}/__init__.py | 0 {tests => testing}/mock/__init__.py | 0 {tests => testing}/mock/automation.py | 0 {tests => testing}/mock/devices/__init__.py | 0 {tests => testing}/mock/devices/alarm.py | 0 {tests => testing}/mock/devices/dimmer.py | 0 {tests => testing}/mock/devices/door_contact.py | 0 {tests => testing}/mock/devices/door_lock.py | 0 {tests => testing}/mock/devices/glass.py | 0 {tests => testing}/mock/devices/hue.py | 0 {tests => testing}/mock/devices/ipcam.py | 0 {tests => testing}/mock/devices/ir_camera.py | 0 {tests => testing}/mock/devices/keypad.py | 0 {tests => testing}/mock/devices/lm.py | 0 {tests => testing}/mock/devices/pir.py | 0 {tests => testing}/mock/devices/power_switch_meter.py | 0 {tests => testing}/mock/devices/power_switch_sensor.py | 0 {tests => testing}/mock/devices/remote_controller.py | 0 {tests => testing}/mock/devices/secure_barrier.py | 0 {tests => testing}/mock/devices/siren.py | 0 {tests => testing}/mock/devices/status_display.py | 0 {tests => testing}/mock/devices/unknown.py | 0 {tests => testing}/mock/devices/valve.py | 0 {tests => testing}/mock/devices/water_sensor.py | 0 {tests => testing}/mock/login.py | 0 {tests => testing}/mock/logout.py | 0 {tests => testing}/mock/oauth_claims.py | 0 {tests => testing}/mock/panel.py | 0 {tests => testing}/mock/user.py | 0 {tests => testing}/test_abode.py | 0 {tests => testing}/test_alarm.py | 0 {tests => testing}/test_automation.py | 0 {tests => testing}/test_binary_sensor.py | 0 {tests => testing}/test_camera.py | 0 {tests => testing}/test_device.py | 0 {tests => testing}/test_dimmer.py | 0 {tests => testing}/test_door_lock.py | 0 {tests => testing}/test_event_controller.py | 0 {tests => testing}/test_hue.py | 0 {tests => testing}/test_lm.py | 0 {tests => testing}/test_power_switch_meter.py | 0 {tests => testing}/test_power_switch_sensor.py | 0 {tests => testing}/test_secure_barrier.py | 0 {tests => testing}/test_valve.py | 0 44 files changed, 0 insertions(+), 0 deletions(-) rename {tests => testing}/__init__.py (100%) rename {tests => testing}/mock/__init__.py (100%) rename {tests => testing}/mock/automation.py (100%) rename {tests => testing}/mock/devices/__init__.py (100%) rename {tests => testing}/mock/devices/alarm.py (100%) rename {tests => testing}/mock/devices/dimmer.py (100%) rename {tests => testing}/mock/devices/door_contact.py (100%) rename {tests => testing}/mock/devices/door_lock.py (100%) rename {tests => testing}/mock/devices/glass.py (100%) rename {tests => testing}/mock/devices/hue.py (100%) rename {tests => testing}/mock/devices/ipcam.py (100%) rename {tests => testing}/mock/devices/ir_camera.py (100%) rename {tests => testing}/mock/devices/keypad.py (100%) rename {tests => testing}/mock/devices/lm.py (100%) rename {tests => testing}/mock/devices/pir.py (100%) rename {tests => testing}/mock/devices/power_switch_meter.py (100%) rename {tests => testing}/mock/devices/power_switch_sensor.py (100%) rename {tests => testing}/mock/devices/remote_controller.py (100%) rename {tests => testing}/mock/devices/secure_barrier.py (100%) rename {tests => testing}/mock/devices/siren.py (100%) rename {tests => testing}/mock/devices/status_display.py (100%) rename {tests => testing}/mock/devices/unknown.py (100%) rename {tests => testing}/mock/devices/valve.py (100%) rename {tests => testing}/mock/devices/water_sensor.py (100%) rename {tests => testing}/mock/login.py (100%) rename {tests => testing}/mock/logout.py (100%) rename {tests => testing}/mock/oauth_claims.py (100%) rename {tests => testing}/mock/panel.py (100%) rename {tests => testing}/mock/user.py (100%) rename {tests => testing}/test_abode.py (100%) rename {tests => testing}/test_alarm.py (100%) rename {tests => testing}/test_automation.py (100%) rename {tests => testing}/test_binary_sensor.py (100%) rename {tests => testing}/test_camera.py (100%) rename {tests => testing}/test_device.py (100%) rename {tests => testing}/test_dimmer.py (100%) rename {tests => testing}/test_door_lock.py (100%) rename {tests => testing}/test_event_controller.py (100%) rename {tests => testing}/test_hue.py (100%) rename {tests => testing}/test_lm.py (100%) rename {tests => testing}/test_power_switch_meter.py (100%) rename {tests => testing}/test_power_switch_sensor.py (100%) rename {tests => testing}/test_secure_barrier.py (100%) rename {tests => testing}/test_valve.py (100%) diff --git a/tests/__init__.py b/testing/__init__.py similarity index 100% rename from tests/__init__.py rename to testing/__init__.py diff --git a/tests/mock/__init__.py b/testing/mock/__init__.py similarity index 100% rename from tests/mock/__init__.py rename to testing/mock/__init__.py diff --git a/tests/mock/automation.py b/testing/mock/automation.py similarity index 100% rename from tests/mock/automation.py rename to testing/mock/automation.py diff --git a/tests/mock/devices/__init__.py b/testing/mock/devices/__init__.py similarity index 100% rename from tests/mock/devices/__init__.py rename to testing/mock/devices/__init__.py diff --git a/tests/mock/devices/alarm.py b/testing/mock/devices/alarm.py similarity index 100% rename from tests/mock/devices/alarm.py rename to testing/mock/devices/alarm.py diff --git a/tests/mock/devices/dimmer.py b/testing/mock/devices/dimmer.py similarity index 100% rename from tests/mock/devices/dimmer.py rename to testing/mock/devices/dimmer.py diff --git a/tests/mock/devices/door_contact.py b/testing/mock/devices/door_contact.py similarity index 100% rename from tests/mock/devices/door_contact.py rename to testing/mock/devices/door_contact.py diff --git a/tests/mock/devices/door_lock.py b/testing/mock/devices/door_lock.py similarity index 100% rename from tests/mock/devices/door_lock.py rename to testing/mock/devices/door_lock.py diff --git a/tests/mock/devices/glass.py b/testing/mock/devices/glass.py similarity index 100% rename from tests/mock/devices/glass.py rename to testing/mock/devices/glass.py diff --git a/tests/mock/devices/hue.py b/testing/mock/devices/hue.py similarity index 100% rename from tests/mock/devices/hue.py rename to testing/mock/devices/hue.py diff --git a/tests/mock/devices/ipcam.py b/testing/mock/devices/ipcam.py similarity index 100% rename from tests/mock/devices/ipcam.py rename to testing/mock/devices/ipcam.py diff --git a/tests/mock/devices/ir_camera.py b/testing/mock/devices/ir_camera.py similarity index 100% rename from tests/mock/devices/ir_camera.py rename to testing/mock/devices/ir_camera.py diff --git a/tests/mock/devices/keypad.py b/testing/mock/devices/keypad.py similarity index 100% rename from tests/mock/devices/keypad.py rename to testing/mock/devices/keypad.py diff --git a/tests/mock/devices/lm.py b/testing/mock/devices/lm.py similarity index 100% rename from tests/mock/devices/lm.py rename to testing/mock/devices/lm.py diff --git a/tests/mock/devices/pir.py b/testing/mock/devices/pir.py similarity index 100% rename from tests/mock/devices/pir.py rename to testing/mock/devices/pir.py diff --git a/tests/mock/devices/power_switch_meter.py b/testing/mock/devices/power_switch_meter.py similarity index 100% rename from tests/mock/devices/power_switch_meter.py rename to testing/mock/devices/power_switch_meter.py diff --git a/tests/mock/devices/power_switch_sensor.py b/testing/mock/devices/power_switch_sensor.py similarity index 100% rename from tests/mock/devices/power_switch_sensor.py rename to testing/mock/devices/power_switch_sensor.py diff --git a/tests/mock/devices/remote_controller.py b/testing/mock/devices/remote_controller.py similarity index 100% rename from tests/mock/devices/remote_controller.py rename to testing/mock/devices/remote_controller.py diff --git a/tests/mock/devices/secure_barrier.py b/testing/mock/devices/secure_barrier.py similarity index 100% rename from tests/mock/devices/secure_barrier.py rename to testing/mock/devices/secure_barrier.py diff --git a/tests/mock/devices/siren.py b/testing/mock/devices/siren.py similarity index 100% rename from tests/mock/devices/siren.py rename to testing/mock/devices/siren.py diff --git a/tests/mock/devices/status_display.py b/testing/mock/devices/status_display.py similarity index 100% rename from tests/mock/devices/status_display.py rename to testing/mock/devices/status_display.py diff --git a/tests/mock/devices/unknown.py b/testing/mock/devices/unknown.py similarity index 100% rename from tests/mock/devices/unknown.py rename to testing/mock/devices/unknown.py diff --git a/tests/mock/devices/valve.py b/testing/mock/devices/valve.py similarity index 100% rename from tests/mock/devices/valve.py rename to testing/mock/devices/valve.py diff --git a/tests/mock/devices/water_sensor.py b/testing/mock/devices/water_sensor.py similarity index 100% rename from tests/mock/devices/water_sensor.py rename to testing/mock/devices/water_sensor.py diff --git a/tests/mock/login.py b/testing/mock/login.py similarity index 100% rename from tests/mock/login.py rename to testing/mock/login.py diff --git a/tests/mock/logout.py b/testing/mock/logout.py similarity index 100% rename from tests/mock/logout.py rename to testing/mock/logout.py diff --git a/tests/mock/oauth_claims.py b/testing/mock/oauth_claims.py similarity index 100% rename from tests/mock/oauth_claims.py rename to testing/mock/oauth_claims.py diff --git a/tests/mock/panel.py b/testing/mock/panel.py similarity index 100% rename from tests/mock/panel.py rename to testing/mock/panel.py diff --git a/tests/mock/user.py b/testing/mock/user.py similarity index 100% rename from tests/mock/user.py rename to testing/mock/user.py diff --git a/tests/test_abode.py b/testing/test_abode.py similarity index 100% rename from tests/test_abode.py rename to testing/test_abode.py diff --git a/tests/test_alarm.py b/testing/test_alarm.py similarity index 100% rename from tests/test_alarm.py rename to testing/test_alarm.py diff --git a/tests/test_automation.py b/testing/test_automation.py similarity index 100% rename from tests/test_automation.py rename to testing/test_automation.py diff --git a/tests/test_binary_sensor.py b/testing/test_binary_sensor.py similarity index 100% rename from tests/test_binary_sensor.py rename to testing/test_binary_sensor.py diff --git a/tests/test_camera.py b/testing/test_camera.py similarity index 100% rename from tests/test_camera.py rename to testing/test_camera.py diff --git a/tests/test_device.py b/testing/test_device.py similarity index 100% rename from tests/test_device.py rename to testing/test_device.py diff --git a/tests/test_dimmer.py b/testing/test_dimmer.py similarity index 100% rename from tests/test_dimmer.py rename to testing/test_dimmer.py diff --git a/tests/test_door_lock.py b/testing/test_door_lock.py similarity index 100% rename from tests/test_door_lock.py rename to testing/test_door_lock.py diff --git a/tests/test_event_controller.py b/testing/test_event_controller.py similarity index 100% rename from tests/test_event_controller.py rename to testing/test_event_controller.py diff --git a/tests/test_hue.py b/testing/test_hue.py similarity index 100% rename from tests/test_hue.py rename to testing/test_hue.py diff --git a/tests/test_lm.py b/testing/test_lm.py similarity index 100% rename from tests/test_lm.py rename to testing/test_lm.py diff --git a/tests/test_power_switch_meter.py b/testing/test_power_switch_meter.py similarity index 100% rename from tests/test_power_switch_meter.py rename to testing/test_power_switch_meter.py diff --git a/tests/test_power_switch_sensor.py b/testing/test_power_switch_sensor.py similarity index 100% rename from tests/test_power_switch_sensor.py rename to testing/test_power_switch_sensor.py diff --git a/tests/test_secure_barrier.py b/testing/test_secure_barrier.py similarity index 100% rename from tests/test_secure_barrier.py rename to testing/test_secure_barrier.py diff --git a/tests/test_valve.py b/testing/test_valve.py similarity index 100% rename from tests/test_valve.py rename to testing/test_valve.py