diff options
author | Damien George <damien@micropython.org> | 2024-02-01 17:43:25 +1100 |
---|---|---|
committer | Damien George <damien@micropython.org> | 2024-03-22 14:31:25 +1100 |
commit | c1513a078dcde3eba74c4572b62b354aed404e21 (patch) | |
tree | 7415a52494cd0a2c3bee33edc05ae555d4947fb7 /tests/run-tests.py | |
parent | e41b571a297bd1682edf6fd98121512bc14ed60d (diff) |
tests/ports/webassembly: Add webassembly JS tests.
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, 1 insertions, 1 deletions
diff --git a/tests/run-tests.py b/tests/run-tests.py index 83af61c83..4f55cdd39 100755 --- a/tests/run-tests.py +++ b/tests/run-tests.py @@ -1142,7 +1142,7 @@ the last matching regex is used: "ports/qemu-arm", ) elif args.target == "webassembly": - test_dirs += ("float",) + test_dirs += ("float", "ports/webassembly") else: # run tests from these directories test_dirs = args.test_dirs |