diff options
author | rahulp13 | 2020-03-03 05:38:24 +0530 |
---|---|---|
committer | rahulp13 | 2020-03-03 05:38:24 +0530 |
commit | 07cc7e03ba5e91c14abc854231ce975109563616 (patch) | |
tree | c00d44222bba1dc31a899987581ccebe1424a2c6 /Windows/dateutil/test/conftest.py | |
parent | dfc268e0863c913a1b8726cd54eea3b40caf7c67 (diff) | |
download | eSim-07cc7e03ba5e91c14abc854231ce975109563616.tar.gz eSim-07cc7e03ba5e91c14abc854231ce975109563616.tar.bz2 eSim-07cc7e03ba5e91c14abc854231ce975109563616.zip |
packaging with pyinstaller - Windows OS
Diffstat (limited to 'Windows/dateutil/test/conftest.py')
-rw-r--r-- | Windows/dateutil/test/conftest.py | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/Windows/dateutil/test/conftest.py b/Windows/dateutil/test/conftest.py deleted file mode 100644 index 78ed70ac..00000000 --- a/Windows/dateutil/test/conftest.py +++ /dev/null @@ -1,41 +0,0 @@ -import os -import pytest - - -# Configure pytest to ignore xfailing tests -# See: https://stackoverflow.com/a/53198349/467366 -def pytest_collection_modifyitems(items): - for item in items: - marker_getter = getattr(item, 'get_closest_marker', None) - - # Python 3.3 support - if marker_getter is None: - marker_getter = item.get_marker - - marker = marker_getter('xfail') - - # Need to query the args because conditional xfail tests still have - # the xfail mark even if they are not expected to fail - if marker and (not marker.args or marker.args[0]): - item.add_marker(pytest.mark.no_cover) - - -def set_tzpath(): - """ - Sets the TZPATH variable if it's specified in an environment variable. - """ - tzpath = os.environ.get('DATEUTIL_TZPATH', None) - - if tzpath is None: - return - - path_components = tzpath.split(':') - - print("Setting TZPATH to {}".format(path_components)) - - from dateutil import tz - tz.TZPATHS.clear() - tz.TZPATHS.extend(path_components) - - -set_tzpath() |