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 36a79e3 commit 8a8f6c7Copy full SHA for 8a8f6c7
test/functional/conftest.py
@@ -28,7 +28,13 @@ def docker_compose_file() -> str:
28
"""
29
30
if _running_in_travis_ci():
31
+ print('Skipping')
32
pytest.skip('Docker hub reports rate limit errors on pulls from Travis CI servers')
33
+ print('Failed to skip')
34
+ else:
35
+ print('Will not skip')
36
+
37
+ print('PATH is ' + repr(os.getenv('PATH')))
38
39
return str(TEST_DIR.joinpath('docker-compose.yml'))
40
0 commit comments