diff options
| author | Jason R. Coombs <jaraco@jaraco.com> | 2016-07-13 11:40:24 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-07-13 11:40:24 -0700 |
| commit | 45de6ea8b9392771a6a14e012605614a7c148506 (patch) | |
| tree | 3e4da3d54bbaf13ce12f706b727b6dc05927a931 /setuptools/tests/test_develop.py | |
| parent | ae285153bcd229236bbb8ecbf94ab803213ec82e (diff) | |
| parent | 6d11e88f938f09ef16db4c6064b6e74acba4db1d (diff) | |
| download | python-setuptools-git-45de6ea8b9392771a6a14e012605614a7c148506.tar.gz | |
Merge pull request #632 from stepshal/blank_lines
Fix quantity of blank lines after code object.
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 1b844499..d22e5e4a 100644 --- a/setuptools/tests/test_develop.py +++ b/setuptools/tests/test_develop.py @@ -26,6 +26,7 @@ setup(name='foo', INIT_PY = """print "foo" """ + @pytest.yield_fixture def temp_user(monkeypatch): with contexts.tempdir() as user_base: @@ -54,6 +55,7 @@ def test_env(tmpdir, temp_user): 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, reason="Cannot run when invoked in a virtualenv or venv") def test_2to3_user_mode(self, test_env): |
