diff options
| author | Benoit Pierre <benoit.pierre@gmail.com> | 2019-11-16 23:30:10 +0100 |
|---|---|---|
| committer | Benoit Pierre <benoit.pierre@gmail.com> | 2019-11-16 23:30:10 +0100 |
| commit | a1e956b20f11f2d02f5a9855bda37660080184c9 (patch) | |
| tree | 1f83221e605be161feff5bbea1e1c2fefef33011 /setuptools/tests/test_namespaces.py | |
| parent | 68dbb703705cdd64e25261a6fcc1c0cc96bcf431 (diff) | |
| download | python-setuptools-git-a1e956b20f11f2d02f5a9855bda37660080184c9.tar.gz | |
Revert "drop easy_install script and associated documentation"
This reverts commit 6e1838a9fb5feb000ba9b6a3c37c8b39d7e872b3.
Diffstat (limited to 'setuptools/tests/test_namespaces.py')
| -rw-r--r-- | setuptools/tests/test_namespaces.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/setuptools/tests/test_namespaces.py b/setuptools/tests/test_namespaces.py index 3c5df68a..f937d981 100644 --- a/setuptools/tests/test_namespaces.py +++ b/setuptools/tests/test_namespaces.py @@ -64,8 +64,9 @@ class TestNamespaces: target.mkdir() install_cmd = [ sys.executable, - '-m', 'pip.__main__', 'install', - '-t', str(target), str(pkg), + '-m', 'easy_install', + '-d', str(target), + str(pkg), ] with test.test.paths_on_pythonpath([str(target)]): subprocess.check_call(install_cmd) |
