# HG changeset patch # User Mads Kiilerich # Date 1495993995 -7200 # Node ID 5ef3c8c1c2c17b8641bd930bee04e45ba4204d86 # Parent f0705609e494461fb1611581ff6ddf8dd7733d3e tests: clarify that time.tzset only is available on Unix diff -r f0705609e494 -r 5ef3c8c1c2c1 kallithea/tests/conftest.py --- a/kallithea/tests/conftest.py Sun May 28 19:42:23 2017 +0200 +++ b/kallithea/tests/conftest.py Sun May 28 19:53:15 2017 +0200 @@ -24,7 +24,7 @@ def pytest_configure(): os.environ['TZ'] = 'UTC' if not kallithea.is_windows: - time.tzset() + time.tzset() # only available on Unix path = os.getcwd() sys.path.insert(0, path)