diff options
| author | Anderson Bravalheri <andersonbravalheri@gmail.com> | 2023-01-07 00:27:27 +0000 |
|---|---|---|
| committer | Anderson Bravalheri <andersonbravalheri@gmail.com> | 2023-01-07 00:37:34 +0000 |
| commit | 222517c5611bd42446ef37ffd1057cbc97a080a9 (patch) | |
| tree | bebd0f35424e495cfba95218f775d1d34791f1b5 /setuptools/tests | |
| parent | ff7ab948a5b19f6ed8d18fe6b1fa44b210ba79f5 (diff) | |
| download | python-setuptools-git-222517c5611bd42446ef37ffd1057cbc97a080a9.tar.gz | |
Update failing test due to latest versions of pip_run
It seems that the latest version of `pip_run` can no longer handle `str`
objects in `inject_sitecustomize` (see
`https://github.com/jaraco/pip-run/commit/30c62a0eadd5af422709e75993ff19a39fe69733`).
Diffstat (limited to 'setuptools/tests')
| -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 = [ |
