# HG changeset patch # User Mads Kiilerich # Date 2017-05-28 19:53:15 # Node ID 5ef3c8c1c2c17b8641bd930bee04e45ba4204d86 # Parent f0705609e494461fb1611581ff6ddf8dd7733d3e tests: clarify that time.tzset only is available on Unix diff --git a/kallithea/tests/conftest.py b/kallithea/tests/conftest.py --- a/kallithea/tests/conftest.py +++ b/kallithea/tests/conftest.py @@ -24,7 +24,7 @@ from tg.util.webtest import test_context 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)