summaryrefslogtreecommitdiffstatshomepage
path: root/tests/run-tests.py
diff options
context:
space:
mode:
authorDamien George <damien@micropython.org>2023-02-09 15:19:32 +1100
committerDamien George <damien@micropython.org>2023-02-09 15:20:00 +1100
commit5c3c1c737e3f6b31f2a7fdaef219a5cd32e52f6d (patch)
tree394b71817cc53fae6e4eda4f5e8be0c051eda4ba /tests/run-tests.py
parent9848b0685f3f24ec9fa7f179a1575b8a76565073 (diff)
downloadmicropython-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-xtests/run-tests.py1
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")