diff options
| author | Anderson Bravalheri <andersonbravalheri@gmail.com> | 2022-02-09 17:46:59 +0000 |
|---|---|---|
| committer | Anderson Bravalheri <andersonbravalheri@gmail.com> | 2022-03-05 14:30:51 +0000 |
| commit | e91969a6bd63fb526ead83f97830bbc4bff139e3 (patch) | |
| tree | 2ed863007e29fca295ecab927f4103cede8783f1 /setuptools/tests/integration | |
| parent | b426b2b9219d656357275318eb03a5b1f503887f (diff) | |
| download | python-setuptools-git-e91969a6bd63fb526ead83f97830bbc4bff139e3.tar.gz | |
Add a 'uses_network' marker to tests that require connectivity
Diffstat (limited to 'setuptools/tests/integration')
| -rw-r--r-- | setuptools/tests/integration/test_pip_install_sdist.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/setuptools/tests/integration/test_pip_install_sdist.py b/setuptools/tests/integration/test_pip_install_sdist.py index 86cc4235..0177c22d 100644 --- a/setuptools/tests/integration/test_pip_install_sdist.py +++ b/setuptools/tests/integration/test_pip_install_sdist.py @@ -112,6 +112,7 @@ ALREADY_LOADED = ("pytest", "mypy") # loaded by pytest/pytest-enabler @pytest.mark.parametrize('package, version', EXAMPLES) +@pytest.mark.uses_network def test_install_sdist(package, version, tmp_path, venv_python, setuptools_wheel): venv_pip = (venv_python, "-m", "pip") sdist = retrieve_sdist(package, version, tmp_path) |
