diff options
author | Damien George <damien.p.george@gmail.com> | 2016-08-27 23:41:16 +1000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2016-08-27 23:41:16 +1000 |
commit | 8f8f699eb72446e94253eaa73a3c893562eef82d (patch) | |
tree | 53d98cb623388d46fb0d7775badc1d5d3a926623 | |
parent | f4ee9f88539e64a88bd837c5877354f6b7141119 (diff) | |
download | micropython-8f8f699eb72446e94253eaa73a3c893562eef82d.tar.gz micropython-8f8f699eb72446e94253eaa73a3c893562eef82d.zip |
tests/run-tests: Disable thread_gc1.py test on Travis.
It has reliability issues (cause unknown at this time).
-rwxr-xr-x | tests/run-tests | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/run-tests b/tests/run-tests index 80536f2423..5e8819729e 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_gc1.py') # has reliability issues skip_tests.add('thread/thread_lock4.py') # has reliability issues skip_tests.add('thread/stress_heap.py') # has reliability issues |