diff options
author | Anderson Bravalheri <andersonbravalheri@gmail.com> | 2023-01-07 07:06:45 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-07 07:06:45 +0000 |
commit | 08d329778ec73844bc1d0228305b35e09137b48e (patch) | |
tree | bebd0f35424e495cfba95218f775d1d34791f1b5 | |
parent | ff7ab948a5b19f6ed8d18fe6b1fa44b210ba79f5 (diff) | |
parent | 222517c5611bd42446ef37ffd1057cbc97a080a9 (diff) | |
download | python-setuptools-git-08d329778ec73844bc1d0228305b35e09137b48e.tar.gz |
Merge pull request #3754 from abravalheri/fix-tests-pip-run
Update failing test due to latest versions of `pip_run`
-rw-r--r-- | setuptools/tests/test_editable_install.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/tests/test_editable_install.py b/setuptools/tests/test_editable_install.py index c8ee7477..4406eda5 100644 --- a/setuptools/tests/test_editable_install.py +++ b/setuptools/tests/test_editable_install.py @@ -341,7 +341,7 @@ def test_editable_with_prefix(tmp_path, sample_project, editable_opts): site_packages.mkdir(parents=True) # install workaround - pip_run.launch.inject_sitecustomize(str(site_packages)) + pip_run.launch.inject_sitecustomize(site_packages) env = dict(os.environ, PYTHONPATH=str(site_packages)) cmd = [ |