aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2015-03-14 22:09:26 -0400
committerJason R. Coombs <jaraco@jaraco.com>2015-03-14 22:09:26 -0400
commit1919a4358eebcfd48e24756e0bb68035e8750800 (patch)
tree1faa1ed24a2ced3371eda7f6f5ede5ee5db4f0cb
parentb3c391ddea4428872a77fa3fe0d5aad2cefcf7c0 (diff)
downloadexternal_python_setuptools-1919a4358eebcfd48e24756e0bb68035e8750800.tar.gz
external_python_setuptools-1919a4358eebcfd48e24756e0bb68035e8750800.tar.bz2
external_python_setuptools-1919a4358eebcfd48e24756e0bb68035e8750800.zip
Remove regression test for Distribute issue #318. The continuing relevance of this test is questionnaible, given that user installs of setuptools no longer imply user installs of other packages. Ref #360.
-rw-r--r--setuptools/tests/test_easy_install.py20
1 files changed, 0 insertions, 20 deletions
diff --git a/setuptools/tests/test_easy_install.py b/setuptools/tests/test_easy_install.py
index 7d61fb83..c5714998 100644
--- a/setuptools/tests/test_easy_install.py
+++ b/setuptools/tests/test_easy_install.py
@@ -232,26 +232,6 @@ class TestUserInstallTest:
self.user_install_setup_context,
)
- def test_setup_requires(self):
- """Regression test for Distribute issue #318
-
- Ensure that a package with setup_requires can be installed when
- setuptools is installed in the user site-packages without causing a
- SandboxViolation.
- """
-
- test_pkg = create_setup_requires_package(os.getcwd())
- test_setup_py = os.path.join(test_pkg, 'setup.py')
-
- try:
- with contexts.quiet():
- with self.patched_setup_context():
- run_setup(test_setup_py, ['install'])
- except IndexError:
- # Test fails in some cases due to bugs in Python
- # See https://bitbucket.org/pypa/setuptools/issue/201
- pass
-
@pytest.yield_fixture
def distutils_package():