diff options
| author | Damien George <damien@micropython.org> | 2024-10-30 13:59:31 +1100 |
|---|---|---|
| committer | Damien George <damien@micropython.org> | 2024-11-04 12:48:10 +1100 |
| commit | 85053adb243800e7168e5736853bea5364770191 (patch) | |
| tree | 56e512dac10ea7bc919592225a8d8505a6224e36 /tests/run-tests.py | |
| parent | 8978102f3595ae321484a6be44c1dcf25c8909a9 (diff) | |
tests/run-tests.py: Add mimxrt and samd platforms.
Signed-off-by: Damien George <damien@micropython.org>
Diffstat (limited to 'tests/run-tests.py')
| -rwxr-xr-x | tests/run-tests.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/run-tests.py b/tests/run-tests.py index 3db058a3a..d0feb4bcd 100755 --- a/tests/run-tests.py +++ b/tests/run-tests.py @@ -1140,6 +1140,8 @@ the last matching regex is used: if args.platform == "pyboard": # run pyboard tests test_dirs += ("float", "stress", "inlineasm", "ports/stm32") + elif args.platform == "mimxrt": + test_dirs += ("float", "stress", "inlineasm") elif args.platform == "renesas-ra": test_dirs += ("float", "inlineasm", "ports/renesas-ra") elif args.platform == "rp2": @@ -1148,7 +1150,7 @@ the last matching regex is used: test_dirs += ("inlineasm",) elif args.platform == "esp32": test_dirs += ("float", "stress", "thread") - elif args.platform in ("esp8266", "minimal", "nrf"): + elif args.platform in ("esp8266", "minimal", "samd", "nrf"): test_dirs += ("float",) elif args.platform == "WiPy": # run WiPy tests |
