From 3171333449e26c17bdfdea707cc96d2e5b79d331 Mon Sep 17 00:00:00 2001 From: jerempy Date: Wed, 5 Oct 2022 10:54:46 -0400 Subject: [PATCH] delete accidental dup test --- tests/integration/test_install_basic.py | 9 --------- 1 file changed, 9 deletions(-) diff --git a/tests/integration/test_install_basic.py b/tests/integration/test_install_basic.py index a22b9844..f916916d 100644 --- a/tests/integration/test_install_basic.py +++ b/tests/integration/test_install_basic.py @@ -390,15 +390,6 @@ def test_create_pipfile_requires_python_full_version(pipenv_instance_pypi): } -@pytest.mark.basic -@pytest.mark.install -def test_create_pipfile_requires_python_full_version(pipenv_instance_pypi): - with pipenv_instance_pypi(chdir=True) as p: - c = p.pipenv("--python 3.10.7") - assert c.returncode == 0 - assert p.pipfile["requires"] == {'python__full_version': '3.10.7'} - - @pytest.mark.basic @pytest.mark.install def test_install_non_exist_dep(pipenv_instance_pypi):