From 78bc31e29409b5e059de0641fc7df9ed58483187 Mon Sep 17 00:00:00 2001 From: Damien George Date: Thu, 25 Aug 2016 14:06:40 +1000 Subject: [PATCH] tests/run-tests: Disable thread/stress_heap.py when running on Travis. It has reliability issues and sometimes fails on Travis (reason currently unknown). --- tests/run-tests | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/run-tests b/tests/run-tests index f796f28630..80536f2423 100755 --- a/tests/run-tests +++ b/tests/run-tests @@ -201,6 +201,7 @@ def run_tests(pyb, tests, args): if os.getenv('TRAVIS') == 'true': skip_tests.add('basics/memoryerror.py') skip_tests.add('thread/thread_lock4.py') # has reliability issues + skip_tests.add('thread/stress_heap.py') # has reliability issues if not has_complex: skip_tests.add('float/complex1.py')