diff options
author | Damien George <damien@micropython.org> | 2024-08-19 12:15:17 +1000 |
---|---|---|
committer | Damien George <damien@micropython.org> | 2024-08-28 11:23:11 +1000 |
commit | 86aa61918a67b626809e8d132a80a63daf380b1c (patch) | |
tree | 3f0dc4f42007c3bf13a541561b0feaf26a9b5551 /tests/run-tests.py | |
parent | b095c097e6cc49de6ba51f4d2ba43258f7f69d1b (diff) |
tests/run-tests.py: Skip additional tests when slice unavailable.
Both of these tests require slice to be enabled.
Signed-off-by: Damien George <damien@micropython.org>
Diffstat (limited to 'tests/run-tests.py')
-rwxr-xr-x | tests/run-tests.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/run-tests.py b/tests/run-tests.py index 83344714c..d0c93f74b 100755 --- a/tests/run-tests.py +++ b/tests/run-tests.py @@ -563,6 +563,7 @@ def run_tests(pyb, tests, args, result_dir, num_threads=1): # These tests don't test slice explicitly but rather use it to perform the test misc_slice_tests = ( "builtin_range", + "bytearray1", "class_super", "containment", "errno1", @@ -573,6 +574,7 @@ def run_tests(pyb, tests, args, result_dir, num_threads=1): "memoryview_gc", "object1", "python34", + "string_format_modulo", "struct_endian", ) |