aboutsummaryrefslogtreecommitdiffstats
path: root/setuptools/tests/test_test.py
diff options
context:
space:
mode:
authorMiro Hrončok <miro@hroncok.cz>2020-05-12 13:33:04 +0200
committerMiro Hrončok <miro@hroncok.cz>2020-05-12 13:37:13 +0200
commit56bcce894e99059a8abda29d8b919b0bee7fd1b9 (patch)
treed808567ec118059ea66fde53818abb75d820ffcb /setuptools/tests/test_test.py
parent030c836645acd4ee4362c980e46b23f5e27d5664 (diff)
downloadexternal_python_setuptools-56bcce894e99059a8abda29d8b919b0bee7fd1b9.tar.gz
external_python_setuptools-56bcce894e99059a8abda29d8b919b0bee7fd1b9.tar.bz2
external_python_setuptools-56bcce894e99059a8abda29d8b919b0bee7fd1b9.zip
Reuse @ack_2to3 in TestDevelop.test_2to3_user_mode
Fixes https://github.com/pypa/setuptools/issues/2100
Diffstat (limited to 'setuptools/tests/test_test.py')
-rw-r--r--setuptools/tests/test_test.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/setuptools/tests/test_test.py b/setuptools/tests/test_test.py
index 0f77d8ff..892fd120 100644
--- a/setuptools/tests/test_test.py
+++ b/setuptools/tests/test_test.py
@@ -10,6 +10,7 @@ import pytest
from setuptools.command.test import test
from setuptools.dist import Distribution
+from setuptools.tests import ack_2to3
from .textwrap import DALS
@@ -73,9 +74,6 @@ def quiet_log():
log.set_verbosity(0)
-ack_2to3 = pytest.mark.filterwarnings('ignore:2to3 support is deprecated')
-
-
@pytest.mark.usefixtures('sample_test', 'quiet_log')
@ack_2to3
def test_test(capfd):