mirror of
https://github.com/pypa/pip
synced 2023-12-13 21:30:23 +01:00
17 lines
429 B
Python
17 lines
429 B
Python
import pytest
|
|
|
|
|
|
@pytest.mark.skipif
|
|
def test_timeout(script):
|
|
result = script.pip(
|
|
"--timeout", "0.01", "install", "-vvv", "INITools",
|
|
expect_error=True,
|
|
)
|
|
assert (
|
|
"Could not fetch URL https://pypi.python.org/simple/INITools/: "
|
|
"timed out" in result.stdout
|
|
)
|
|
assert (
|
|
"Could not fetch URL https://pypi.python.org/simple/: "
|
|
"timed out" in result.stdout
|
|
)
|