aboutsummaryrefslogtreecommitdiffstats
path: root/setuptools/tests/test_namespaces.py
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2019-11-16 15:14:51 -0500
committerGitHub <noreply@github.com>2019-11-16 15:14:51 -0500
commit402240c01964f078254c53ce9db7f1c816146225 (patch)
tree1c793d24e0fb23bca6e0c8025ed412268a31957b /setuptools/tests/test_namespaces.py
parenta00798264cf4d55db28585cfc147050a4d579b52 (diff)
parentb8101f06532b1deab448e6e23d0a61eb125c62df (diff)
downloadexternal_python_setuptools-402240c01964f078254c53ce9db7f1c816146225.tar.gz
external_python_setuptools-402240c01964f078254c53ce9db7f1c816146225.tar.bz2
external_python_setuptools-402240c01964f078254c53ce9db7f1c816146225.zip
Merge pull request #1830 from benoit-pierre/pip_wheels
drop easy_install script/command, re-implement `fetch_build_egg` to use pip
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)