summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDamien George <damien@micropython.org>2020-11-30 10:28:48 +1100
committerDamien George <damien@micropython.org>2020-11-30 10:48:41 +1100
commit02b44a0154aee3cfd2675b4ff180061b2b5bc40d (patch)
tree354e5024a9bec94603079facac85ae1bf0ad10be
parentee3706f4bdcb06c60eef16eff38dd388509021d8 (diff)
tests/run-tests: Update skipped tests on CI for GitHub Actions.
Signed-off-by: Damien George <damien@micropython.org>
-rwxr-xr-xtests/run-tests10
1 files changed, 3 insertions, 7 deletions
diff --git a/tests/run-tests b/tests/run-tests
index eebc8c425..23c30d3c3 100755
--- a/tests/run-tests
+++ b/tests/run-tests
@@ -342,13 +342,9 @@ def run_tests(pyb, tests, args, result_dir):
'struct_endian',
)
- # 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
- skip_tests.add('thread/stress_recurse.py') # has reliability issues
+ # Some tests shouldn't be run on GitHub Actions
+ if os.getenv('GITHUB_ACTIONS') == 'true':
+ skip_tests.add('thread/stress_schedule.py') # has reliability issues
if upy_float_precision == 0:
skip_tests.add('extmod/uctypes_le_float.py')