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 a7a8be6 commit 58f9f09Copy full SHA for 58f9f09
tests/test_base.py
@@ -171,9 +171,9 @@ def cb(arg):
171
self.assertEqual(calls, ['a'])
172
173
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')
+ if os.environ.get('TRAVIS_OS_NAME'):
+ # Time seems to be really unpredictable on Travis.
+ raise unittest.SkipTest('time is not monotonic on Travis')
177
178
i = 0
179
0 commit comments