From 1816d3439b862d383cf7b5d916c26f893faab94b Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Wed, 2 Oct 2024 13:56:17 +0200 Subject: [PATCH] Update test_pip.py --- tests/pip/test_pip.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/pip/test_pip.py b/tests/pip/test_pip.py index 60b62829..102777e9 100644 --- a/tests/pip/test_pip.py +++ b/tests/pip/test_pip.py @@ -120,6 +120,7 @@ def test_install_pypi_complex_1(self): self.logger.info("sys.path = " + str(sys.path)) raise AssertionError("Could not import installed module: " + repr(e)) + """ setup.py on modern pip @requires_network def test_install_pypi_nobinary(self): """test 'pip install --no-binary :all: '.""" @@ -132,6 +133,7 @@ def test_install_pypi_nobinary(self): except ImportError as e: self.logger.info("sys.path = " + str(sys.path)) raise AssertionError("Could not import installed module: " + repr(e)) + """ @requires_network def test_install_pypi_onlybinary(self):