Skip to content

Commit be206da

Browse files
committed
Exclude jaraco.develop on cygwin
1 parent 578480e commit be206da

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ def pytest_configure(config):
4545
collect_ignore.append('pavement.py')
4646

4747

48-
if sys.version_info < (3, 9):
48+
if sys.version_info < (3, 9) or sys.platform == 'cygwin':
4949
collect_ignore.append('tools/finalize.py')
5050

5151

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ testing =
7272
pytest-timeout
7373
pytest-perf
7474
# for tools/finalize.py
75-
jaraco.develop >= 7.21; python_version >= "3.9"
75+
jaraco.develop >= 7.21; python_version >= "3.9" and sys_platform != "cygwin"
7676

7777
testing-integration =
7878
pytest

0 commit comments

Comments
 (0)