Skip to content

Commit 74e63e1

Browse files
also skip the support tests for old setuptools on python 3.6+
1 parent 5a2ffed commit 74e63e1

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

testing/test_setuptools_support.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@
55
import os
66
import subprocess
77
import pytest
8+
pytestmark = pytest.mark.skipif(
9+
"sys.version_info >= (3,6,0)",
10+
reason="integration with old versions no longer needed on py3.6+")
811

912

1013
@pytest.fixture(scope='session')

0 commit comments

Comments
 (0)