From 4844a0b7a1ceffb2bdfc99128a4adc906111eced Mon Sep 17 00:00:00 2001 From: MarkKoz Date: Mon, 6 Aug 2018 12:31:38 -0700 Subject: [PATCH] remove requests package install in tests We're only interested in testing if the virtual environment can be successfully created. --- tests/integration/test_dot_venv.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/integration/test_dot_venv.py b/tests/integration/test_dot_venv.py index a122a9bc..66550309 100644 --- a/tests/integration/test_dot_venv.py +++ b/tests/integration/test_dot_venv.py @@ -59,7 +59,7 @@ def test_venv_file_with_name(PipenvInstance, pypi): if 'PIPENV_VENV_IN_PROJECT' in os.environ: del os.environ['PIPENV_VENV_IN_PROJECT'] - c = p.pipenv('install requests') + c = p.pipenv('install') assert c.return_code == 0 venv_loc = Path(p.pipenv('--venv').out.strip()) @@ -80,7 +80,7 @@ def test_venv_file_with_path(PipenvInstance, pypi): with open(file_path, "w") as f: f.write(venv_path.name) - c = p.pipenv("install requests") + c = p.pipenv("install") assert c.return_code == 0 venv_loc = Path(p.pipenv('--venv').out.strip())