Skip to content

Commit

Permalink
tests: skip on rate limit
Browse files Browse the repository at this point in the history
  • Loading branch information
paulmueller committed Jan 6, 2022
1 parent 7b42d76 commit bc63de3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_head_update.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

@pytest.mark.xfail(os.getenv("APPVEYOR") in ["true", "True"],
reason="does not always run on Appveyor")
@pytest.mark.xfail(os.getenv("TRAVIS") == "true",
@pytest.mark.xfail(os.getenv("CI") == "true",
reason="does not always run on travisCI")
@pytest.mark.skipif(not NET_AVAILABLE, reason="No network connection!")
def test_update_basic():
Expand Down

0 comments on commit bc63de3

Please sign in to comment.