We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 578480e commit be206daCopy full SHA for be206da
conftest.py
@@ -45,7 +45,7 @@ def pytest_configure(config):
45
collect_ignore.append('pavement.py')
46
47
48
-if sys.version_info < (3, 9):
+if sys.version_info < (3, 9) or sys.platform == 'cygwin':
49
collect_ignore.append('tools/finalize.py')
50
51
setup.cfg
@@ -72,7 +72,7 @@ testing =
72
pytest-timeout
73
pytest-perf
74
# for tools/finalize.py
75
- jaraco.develop >= 7.21; python_version >= "3.9"
+ jaraco.develop >= 7.21; python_version >= "3.9" and sys_platform != "cygwin"
76
77
testing-integration =
78
pytest
0 commit comments