From 567e7fcd12078e5a27eacaea193dd1e4c846e43e Mon Sep 17 00:00:00 2001 From: Damien George Date: Wed, 17 Aug 2016 13:48:09 +1000 Subject: [PATCH] tests/run-tests: Disable thread/thread_lock4.py on Travis. It has reliability issues that need to be worked out. --- tests/run-tests | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/run-tests b/tests/run-tests index 32d334a008..f796f28630 100755 --- a/tests/run-tests +++ b/tests/run-tests @@ -200,6 +200,7 @@ def run_tests(pyb, tests, args): # Some tests shouldn't be run under Travis CI if os.getenv('TRAVIS') == 'true': skip_tests.add('basics/memoryerror.py') + skip_tests.add('thread/thread_lock4.py') # has reliability issues if not has_complex: skip_tests.add('float/complex1.py')