Commit 45ec75be authored by Jason R. Coombs's avatar Jason R. Coombs

Feed the hobgoblins (delint).

parent 9edbd7e8
...@@ -62,7 +62,8 @@ class TestDevelop: ...@@ -62,7 +62,8 @@ class TestDevelop:
in_virtualenv = hasattr(sys, 'real_prefix') in_virtualenv = hasattr(sys, 'real_prefix')
in_venv = hasattr(sys, 'base_prefix') and sys.base_prefix != sys.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") reason="Cannot run when invoked in a virtualenv or venv")
def test_2to3_user_mode(self, test_env): def test_2to3_user_mode(self, test_env):
settings = dict( settings = dict(
...@@ -102,7 +103,8 @@ class TestDevelop: ...@@ -102,7 +103,8 @@ class TestDevelop:
Test that console scripts are installed and that they reference Test that console scripts are installed and that they reference
only the project by name and not the current version. 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.") "to be invoked without mutating environment.")
settings = dict( settings = dict(
name='foo', name='foo',
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment