Skip to content

Commit 02b44a0

Browse files
committed
tests/run-tests: Update skipped tests on CI for GitHub Actions.
Signed-off-by: Damien George <damien@micropython.org>
1 parent ee3706f commit 02b44a0

File tree

1 file changed

+3
-7
lines changed

1 file changed

+3
-7
lines changed

tests/run-tests

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -342,13 +342,9 @@ def run_tests(pyb, tests, args, result_dir):
342342
'struct_endian',
343343
)
344344

345-
# Some tests shouldn't be run under Travis CI
346-
if os.getenv('TRAVIS') == 'true':
347-
skip_tests.add('basics/memoryerror.py')
348-
skip_tests.add('thread/thread_gc1.py') # has reliability issues
349-
skip_tests.add('thread/thread_lock4.py') # has reliability issues
350-
skip_tests.add('thread/stress_heap.py') # has reliability issues
351-
skip_tests.add('thread/stress_recurse.py') # has reliability issues
345+
# Some tests shouldn't be run on GitHub Actions
346+
if os.getenv('GITHUB_ACTIONS') == 'true':
347+
skip_tests.add('thread/stress_schedule.py') # has reliability issues
352348

353349
if upy_float_precision == 0:
354350
skip_tests.add('extmod/uctypes_le_float.py')

0 commit comments

Comments
 (0)