From 2fe293c58e33803c87e831e08822ce2c9e116d68 Mon Sep 17 00:00:00 2001 From: Matt Davis Date: Tue, 11 Jul 2023 03:19:23 -0400 Subject: [PATCH] Don't use search for generic python to crreate the venv for this test. --- tests/integration/test_cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/test_cli.py b/tests/integration/test_cli.py index c8e0f9ad..211b053c 100644 --- a/tests/integration/test_cli.py +++ b/tests/integration/test_cli.py @@ -19,7 +19,7 @@ def test_pipenv_where(pipenv_instance_pypi): @pytest.mark.cli def test_pipenv_venv(pipenv_instance_pypi): with pipenv_instance_pypi() as p: - c = p.pipenv('--python python') + c = p.pipenv('install dataclasses-json') assert c.returncode == 0 c = p.pipenv('--venv') assert c.returncode == 0