Skip to content

Commit

Permalink
Skip tests with strange problems
Browse files Browse the repository at this point in the history
  • Loading branch information
vr2262 committed Dec 16, 2015
1 parent 9b47c26 commit e8dee9d
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tests/python/test_selenium.py
Original file line number Diff line number Diff line change
Expand Up @@ -4393,6 +4393,10 @@ def test_revisit_offline_entirely(self):

class TestEnumerateSlowRevisit(DriverTest):
def setUp(self):
is_travis = os.environ.get('TRAVIS', 'f').startswith('t')
if is_travis and not SAUCE_CONNECT:
raise unittest.SkipTest("These just don't work reliably on Travis")

super().setUp()

try:
Expand Down

0 comments on commit e8dee9d

Please sign in to comment.