diff options
author | Damien George <damien@micropython.org> | 2023-02-09 15:19:32 +1100 |
---|---|---|
committer | Damien George <damien@micropython.org> | 2023-02-09 15:20:00 +1100 |
commit | 5c3c1c737e3f6b31f2a7fdaef219a5cd32e52f6d (patch) | |
tree | 394b71817cc53fae6e4eda4f5e8be0c051eda4ba /tests/run-tests.py | |
parent | 9848b0685f3f24ec9fa7f179a1575b8a76565073 (diff) | |
download | micropython-5c3c1c737e3f6b31f2a7fdaef219a5cd32e52f6d.tar.gz micropython-5c3c1c737e3f6b31f2a7fdaef219a5cd32e52f6d.zip |
tests/float: Skip new complex tests if complex unavailable.
These complex tests were recently added.
Signed-off-by: Damien George <damien@micropython.org>
Diffstat (limited to 'tests/run-tests.py')
-rwxr-xr-x | tests/run-tests.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/run-tests.py b/tests/run-tests.py index e548059b1c..03269a9f1c 100755 --- a/tests/run-tests.py +++ b/tests/run-tests.py @@ -532,6 +532,7 @@ def run_tests(pyb, tests, args, result_dir, num_threads=1): if not has_complex: skip_tests.add("float/complex1.py") skip_tests.add("float/complex1_intbig.py") + skip_tests.add("float/complex_reverse_op.py") skip_tests.add("float/complex_special_methods.py") skip_tests.add("float/int_big_float.py") skip_tests.add("float/true_value.py") |