diff options
author | Damien George <damien.p.george@gmail.com> | 2016-08-17 13:48:09 +1000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2016-08-17 13:48:09 +1000 |
commit | 567e7fcd12078e5a27eacaea193dd1e4c846e43e (patch) | |
tree | 1f5f7d512813406804d9a627d375b279f49f967e /tests | |
parent | 244332df9f887ee2743431db80c4685fe6c24a2f (diff) | |
download | micropython-567e7fcd12078e5a27eacaea193dd1e4c846e43e.tar.gz micropython-567e7fcd12078e5a27eacaea193dd1e4c846e43e.zip |
tests/run-tests: Disable thread/thread_lock4.py on Travis.
It has reliability issues that need to be worked out.
Diffstat (limited to 'tests')
-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 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') |