Skip to content

Commit 58f9f09

Browse files
committed
Skip test_call_at on Travis.
1 parent a7a8be6 commit 58f9f09

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/test_base.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -171,9 +171,9 @@ def cb(arg):
171171
self.assertEqual(calls, ['a'])
172172

173173
def test_call_at(self):
174-
if os.environ.get('TRAVIS_OS_NAME') == 'osx':
175-
# Time seems to be really unpredictable on Travis' macOS.
176-
raise unittest.SkipTest('time is not monotonic on Travis/macOS')
174+
if os.environ.get('TRAVIS_OS_NAME'):
175+
# Time seems to be really unpredictable on Travis.
176+
raise unittest.SkipTest('time is not monotonic on Travis')
177177

178178
i = 0
179179

0 commit comments

Comments
 (0)