From fc289c06f59b06a0fae0c862d0f2df929f9e182b Mon Sep 17 00:00:00 2001 From: Stephen Finucane Date: Thu, 5 Jan 2023 18:21:48 +0000 Subject: Fail on mismatched python spec attributes (#2824) Closes https://github.com/tox-dev/tox/issues/2754 --- tests/tox_env/python/test_python_api.py | 1 + 1 file changed, 1 insertion(+) (limited to 'tests/tox_env/python/test_python_api.py') diff --git a/tests/tox_env/python/test_python_api.py b/tests/tox_env/python/test_python_api.py index 0520ff17..b11c4376 100644 --- a/tests/tox_env/python/test_python_api.py +++ b/tests/tox_env/python/test_python_api.py @@ -95,6 +95,7 @@ def test_base_python_env_no_conflict(env: str, base_python: list[str], ignore_co ("py3", ["py2"], ["py2"]), ("py38", ["py39"], ["py39"]), ("py38", ["py38", "py39"], ["py39"]), + ("py38", ["python3"], ["python3"]), ("py310", ["py38", "py39"], ["py38", "py39"]), ("py3.11.1", ["py3.11.2"], ["py3.11.2"]), ("py3-64", ["py3-32"], ["py3-32"]), -- cgit v1.2.1