Merge pull request #6263 from hroncok/mark_network

Mark 3 tests as network tests
This commit is contained in:
Pradyun Gedam 2019-02-24 22:07:49 +05:30 committed by GitHub
commit 94a06ead43
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 3 additions and 0 deletions

View File

@ -542,6 +542,7 @@ def test_install_argparse_shadowed(script):
assert "Not uninstalling argparse" in result.stdout
@pytest.mark.network
@pytest.mark.skipif("sys.version_info < (3,4)")
def test_upgrade_argparse_shadowed(script):
# If argparse is installed - even if shadowed for imported - we support

View File

@ -297,6 +297,7 @@ def test_constraints_local_editable_install_causes_error(script, data):
assert 'Could not satisfy constraints for' in result.stderr
@pytest.mark.network
def test_constraints_local_editable_install_pep518(script, data):
to_install = data.src.join("pep518-3.0")

View File

@ -219,6 +219,7 @@ def test_pip_wheel_with_user_set_in_config(script, data, common_wheels):
assert "Successfully built withpyproject" in result.stdout, result.stdout
@pytest.mark.network
def test_pep517_wheels_are_not_confused_with_other_files(script, tmpdir, data):
"""Check correct wheels are copied. (#6196)
"""