From 1fa14eaffdc1ae2d82df4a12e526c318e75de3ff Mon Sep 17 00:00:00 2001 From: MarkKoz Date: Mon, 6 Aug 2018 12:31:58 -0700 Subject: [PATCH] add missing decorator for test_venv_file_with_name --- tests/integration/test_dot_venv.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/integration/test_dot_venv.py b/tests/integration/test_dot_venv.py index 66550309..14d8d359 100644 --- a/tests/integration/test_dot_venv.py +++ b/tests/integration/test_dot_venv.py @@ -42,6 +42,7 @@ def test_reuse_previous_venv(PipenvInstance, pypi): assert normalize_drive(p.path) in p.pipenv('--venv').out +@pytest.mark.dotvenv def test_venv_file_with_name(PipenvInstance, pypi): """Tests virtualenv creation & package installation when a .venv file exists at the project root.