summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2017-11-20 13:10:04 -0500
committerJason R. Coombs <jaraco@jaraco.com>2017-11-20 13:10:04 -0500
commit45ec75beccba6432b3ed7b80fd84b65276453e9d (patch)
treecf5c57a6719ed4ae69b7e6da327d5b8048251226
parent9edbd7e80fce13b1895c6932f70361285a65b84b (diff)
downloadpython-setuptools-git-45ec75beccba6432b3ed7b80fd84b65276453e9d.tar.gz
Feed the hobgoblins (delint).
-rw-r--r--setuptools/tests/test_develop.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/setuptools/tests/test_develop.py b/setuptools/tests/test_develop.py
index a0aaada5..35ea1403 100644
--- a/setuptools/tests/test_develop.py
+++ b/setuptools/tests/test_develop.py
@@ -62,7 +62,8 @@ class TestDevelop:
in_virtualenv = hasattr(sys, 'real_prefix')
in_venv = hasattr(sys, 'base_prefix') and sys.base_prefix != sys.prefix
- @pytest.mark.skipif(in_virtualenv or in_venv,
+ @pytest.mark.skipif(
+ in_virtualenv or in_venv,
reason="Cannot run when invoked in a virtualenv or venv")
def test_2to3_user_mode(self, test_env):
settings = dict(
@@ -102,7 +103,8 @@ class TestDevelop:
Test that console scripts are installed and that they reference
only the project by name and not the current version.
"""
- pytest.skip("TODO: needs a fixture to cause 'develop' "
+ pytest.skip(
+ "TODO: needs a fixture to cause 'develop' "
"to be invoked without mutating environment.")
settings = dict(
name='foo',