Bug timewarp sync 946 (#947)

* Fix --timezone iCloud sync, #946

* ADded tests for timezone fix #946
This commit is contained in:
Rhet Turnbull
2023-01-21 14:48:56 -08:00
committed by GitHub
parent 32b23a09cb
commit bd01e41714
123 changed files with 856 additions and 4 deletions

View File

@@ -20,10 +20,11 @@ time.tzset()
TERMINAL_WIDTH = 250
OS_VER = get_os_version()[1]
if OS_VER == "15":
OS_VER = get_os_version()
if OS_VER[0] == "10" and OS_VER[1] == "15":
from tests.config_timewarp_catalina import CATALINA_PHOTOS_5 as TEST_DATA
elif OS_VER[0] == "13":
from tests.config_timewarp_ventura import VENTURA_PHOTOS_5 as TEST_DATA
else:
pytest.skip(allow_module_level=True)
TEST_DATA = {}