From ffcbdfa817b7b67cdadd35721ee941a1b3bbb41a Mon Sep 17 00:00:00 2001 From: Aron Bierbaum Date: Fri, 26 Aug 2022 09:28:35 -0500 Subject: [PATCH] Fix test suite --- tests/integration/test_install_uri.py | 3 +++ tests/integration/test_lock.py | 1 + 2 files changed, 4 insertions(+) diff --git a/tests/integration/test_install_uri.py b/tests/integration/test_install_uri.py index c8cce869..aff1b7e1 100644 --- a/tests/integration/test_install_uri.py +++ b/tests/integration/test_install_uri.py @@ -202,6 +202,9 @@ name = "pypi" six = "*" [dev-packages] + +[pipenv] +install_search_all_sources = true """.strip() f.write(contents) c = p.pipenv("install pipenv-test-private-package --index https://test.pypi.org/simple") diff --git a/tests/integration/test_lock.py b/tests/integration/test_lock.py index 63775c7a..b14a7978 100644 --- a/tests/integration/test_lock.py +++ b/tests/integration/test_lock.py @@ -335,6 +335,7 @@ name = "testpypi" [packages] pipenv-test-private-package = {version = "*", index = "testpypi"} +pipenv-test-public-package = {version = "*", index = "pypi"} requests = "*" """.strip() f.write(contents)