diff options
| author | Jason R. Coombs <jaraco@jaraco.com> | 2021-01-20 21:02:24 -0500 |
|---|---|---|
| committer | Jason R. Coombs <jaraco@jaraco.com> | 2021-01-20 21:02:24 -0500 |
| commit | a9ecd7efb38fac3fbbcb6a55feeff10f45793027 (patch) | |
| tree | 646a63d24354ab17ca71bea038d869fedb49d114 /setuptools/tests/test_namespaces.py | |
| parent | 8222d6f7b992d3b184434acb31cd66b0f2e41401 (diff) | |
| download | python-setuptools-git-feature/remove-easy-install.tar.gz | |
Remove easy_install script and module.feature/remove-easy-install
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 6c8c522d..270f90c9 100644 --- a/setuptools/tests/test_namespaces.py +++ b/setuptools/tests/test_namespaces.py @@ -62,8 +62,9 @@ class TestNamespaces: target.mkdir() install_cmd = [ sys.executable, - '-m', 'easy_install', - '-d', str(target), + '-m', 'pip', + 'install', + '-t', str(target), str(pkg), ] with test.test.paths_on_pythonpath([str(target)]): |
