summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2022-12-31 08:35:35 +0100
committerGitHub <noreply@github.com>2022-12-30 23:35:35 -0800
commitbfba43c4a8a3349f82651bfcfae64c40ae07a540 (patch)
treedfe81b90e214d2881bc19a00412864ab815604ea /tests
parent6253d6220486e17c6132f613cc6218c87b084417 (diff)
downloadtox-git-bfba43c4a8a3349f82651bfcfae64c40ae07a540.tar.gz
Relax test_list_installed_deps() to allow other packages (#2796)
Relax the check in `test_list_installed_deps()` to allow `pip freeze` to return other packages before `pip`. This is necessary if the Python interpreter vendors some packages itself, so that they are available even in fresh venv. This is the case e.g. for cffi in PyPy.
Diffstat (limited to 'tests')
-rw-r--r--tests/tox_env/python/test_python_api.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/tox_env/python/test_python_api.py b/tests/tox_env/python/test_python_api.py
index 90e2ab65..0520ff17 100644
--- a/tests/tox_env/python/test_python_api.py
+++ b/tests/tox_env/python/test_python_api.py
@@ -186,6 +186,6 @@ def test_list_installed_deps(in_ci: bool, tox_project: ToxProjectCreator, mocker
mocker.patch("tox.tox_env.python.api.is_ci", return_value=in_ci)
result = tox_project({"tox.ini": "[testenv]\nskip_install = true"}).run("r", "-e", "py")
if in_ci:
- assert "py: pip==" in result.out
+ assert "pip==" in result.out
else:
- assert "py: pip==" not in result.out
+ assert "pip==" not in result.out