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 31c9693 commit 016a024Copy full SHA for 016a024
tests/test_process.py
@@ -645,6 +645,10 @@ def test_process_delayed_stdio__paused__no_stdin(self):
645
})
646
647
def test_process_delayed_stdio__not_paused__no_stdin(self):
648
+ if os.environ.get('TRAVIS_OS_NAME') and sys.platform == 'darwin':
649
+ # Randomly crashes on Travis, can't reproduce locally.
650
+ raise unittest.SkipTest()
651
+
652
transport, proto = self.loop.run_until_complete(
653
self.run_sub(
654
stdin=None,
0 commit comments