We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a473b29 commit 36a79e3Copy full SHA for 36a79e3
test/functional/conftest.py
@@ -27,6 +27,9 @@ def docker_compose_file() -> str:
27
The fixture name must be docker_compose_file and return str.
28
"""
29
30
+ if _running_in_travis_ci():
31
+ pytest.skip('Docker hub reports rate limit errors on pulls from Travis CI servers')
32
+
33
return str(TEST_DIR.joinpath('docker-compose.yml'))
34
35
@@ -61,9 +64,6 @@ def _running_in_travis_ci() -> bool:
61
64
62
65
@pytest.fixture(scope='session')
63
66
def ipfs_service_auth() -> ty.Tuple[str, str]:
- if _running_in_travis_ci():
- pytest.skip('Docker hub reports rate limit errors on pulls from Travis CI servers')
-
67
return 'TheUser', 'ThePassword'
68
69
0 commit comments