aboutsummaryrefslogtreecommitdiffstats
path: root/setuptools/tests/test_namespaces.py
diff options
context:
space:
mode:
authorBenoit Pierre <benoit.pierre@gmail.com>2019-11-14 21:51:33 +0100
committerBenoit Pierre <benoit.pierre@gmail.com>2019-11-15 20:06:07 +0100
commit6e1838a9fb5feb000ba9b6a3c37c8b39d7e872b3 (patch)
treefc05e138e5ff28ca7855e80af6cc89cb76eb81d2 /setuptools/tests/test_namespaces.py
parentd6948c636f5e657ac56911b71b7a459d326d8389 (diff)
downloadexternal_python_setuptools-6e1838a9fb5feb000ba9b6a3c37c8b39d7e872b3.tar.gz
external_python_setuptools-6e1838a9fb5feb000ba9b6a3c37c8b39d7e872b3.tar.bz2
external_python_setuptools-6e1838a9fb5feb000ba9b6a3c37c8b39d7e872b3.zip
drop easy_install script and associated documentation
Diffstat (limited to 'setuptools/tests/test_namespaces.py')
-rw-r--r--setuptools/tests/test_namespaces.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/setuptools/tests/test_namespaces.py b/setuptools/tests/test_namespaces.py
index f937d981..3c5df68a 100644
--- a/setuptools/tests/test_namespaces.py
+++ b/setuptools/tests/test_namespaces.py
@@ -64,9 +64,8 @@ class TestNamespaces:
target.mkdir()
install_cmd = [
sys.executable,
- '-m', 'easy_install',
- '-d', str(target),
- str(pkg),
+ '-m', 'pip.__main__', 'install',
+ '-t', str(target), str(pkg),
]
with test.test.paths_on_pythonpath([str(target)]):
subprocess.check_call(install_cmd)