diff options
author | Miro Hrončok <miro@hroncok.cz> | 2020-05-12 13:33:04 +0200 |
---|---|---|
committer | Miro Hrončok <miro@hroncok.cz> | 2020-05-12 13:37:13 +0200 |
commit | 56bcce894e99059a8abda29d8b919b0bee7fd1b9 (patch) | |
tree | d808567ec118059ea66fde53818abb75d820ffcb /setuptools/tests/test_develop.py | |
parent | 030c836645acd4ee4362c980e46b23f5e27d5664 (diff) | |
download | external_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_develop.py')
-rw-r--r-- | setuptools/tests/test_develop.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/setuptools/tests/test_develop.py b/setuptools/tests/test_develop.py index 792975fd..bb89a865 100644 --- a/setuptools/tests/test_develop.py +++ b/setuptools/tests/test_develop.py @@ -17,6 +17,7 @@ import pytest from setuptools.command.develop import develop from setuptools.dist import Distribution +from setuptools.tests import ack_2to3 from . import contexts from . import namespaces @@ -65,6 +66,7 @@ class TestDevelop: @pytest.mark.skipif( in_virtualenv or in_venv, reason="Cannot run when invoked in a virtualenv or venv") + @ack_2to3 def test_2to3_user_mode(self, test_env): settings = dict( name='foo', |