summaryrefslogtreecommitdiff
path: root/setuptools/tests
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2020-07-03 14:04:07 -0400
committerGitHub <noreply@github.com>2020-07-03 14:04:07 -0400
commit91213fb2e7eecde9f5d7582de485398f546e7aa8 (patch)
tree63bb267b54490106436fda6b6b5c6805f67003a5 /setuptools/tests
parent78d2a3bfafd38112dc3c486cd478e4cee1f782ec (diff)
parentd9a3b57cfabcae25539b5118977b2f6ef78d641b (diff)
downloadpython-setuptools-git-91213fb2e7eecde9f5d7582de485398f546e7aa8.tar.gz
Merge pull request #2166 from pypa/bugfix/2165-remove-site-py
Remove site.py hack
Diffstat (limited to 'setuptools/tests')
-rw-r--r--setuptools/tests/test_easy_install.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/setuptools/tests/test_easy_install.py b/setuptools/tests/test_easy_install.py
index 8611dc16..c07b5bea 100644
--- a/setuptools/tests/test_easy_install.py
+++ b/setuptools/tests/test_easy_install.py
@@ -62,14 +62,6 @@ SETUP_PY = DALS("""
class TestEasyInstallTest:
- def test_install_site_py(self, tmpdir):
- dist = Distribution()
- cmd = ei.easy_install(dist)
- cmd.sitepy_installed = False
- cmd.install_dir = str(tmpdir)
- cmd.install_site_py()
- assert (tmpdir / 'site.py').exists()
-
def test_get_script_args(self):
header = ei.CommandSpec.best().from_environment().as_header()
dist = FakeDist()