diff options
author | Nikolaus Waxweiler <madigens@gmail.com> | 2018-10-27 11:39:30 +0100 |
---|---|---|
committer | Paul Ganssle <paul@ganssle.io> | 2018-10-27 07:34:45 -0400 |
commit | 98056a680fde6bede9ce4c159b72d1ac01bf9067 (patch) | |
tree | 0a0334a57b904e695a0458034234b206bfeb0c32 /setuptools/tests/test_test.py | |
parent | d3215c10b6f9ccd8940f9345642ee0718f158585 (diff) | |
download | external_python_setuptools-98056a680fde6bede9ce4c159b72d1ac01bf9067.tar.gz external_python_setuptools-98056a680fde6bede9ce4c159b72d1ac01bf9067.tar.bz2 external_python_setuptools-98056a680fde6bede9ce4c159b72d1ac01bf9067.zip |
Remove pytest marker and code for Python < 2.7
Diffstat (limited to 'setuptools/tests/test_test.py')
-rw-r--r-- | setuptools/tests/test_test.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/setuptools/tests/test_test.py b/setuptools/tests/test_test.py index 4ba70484..8d1425e1 100644 --- a/setuptools/tests/test_test.py +++ b/setuptools/tests/test_test.py @@ -93,10 +93,6 @@ def test_test(capfd): assert out == 'Foo\n' -@pytest.mark.skipif( - sys.version_info < (2, 7), - reason="No discover support for unittest on Python 2.6", -) @pytest.mark.usefixtures('tmpdir_cwd', 'quiet_log') def test_tests_are_run_once(capfd): params = dict( |