diff options
| author | Damien George <damien@micropython.org> | 2025-08-10 22:25:15 +1000 |
|---|---|---|
| committer | Damien George <damien@micropython.org> | 2025-08-15 00:23:16 +1000 |
| commit | 656582795504cb6c9b025e716f20a2468e5d71ac (patch) | |
| tree | 0f475b46addebffdb5c2fd6d311f2fb4da51c698 /tests/run-tests.py | |
| parent | f493075d88be9ce851c4d401d041b801701975c3 (diff) | |
tests/run-tests.py: Always include stress/ tests directory in tests.
Ports that now run the stress tests, that didn't prior to this commit are:
cc3200, esp8266, minimal, nrf, renesas-ra, samd, qemu, webassembly.
Signed-off-by: Damien George <damien@micropython.org>
Diffstat (limited to 'tests/run-tests.py')
| -rwxr-xr-x | tests/run-tests.py | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/tests/run-tests.py b/tests/run-tests.py index 498370f70..21e0ab887 100755 --- a/tests/run-tests.py +++ b/tests/run-tests.py @@ -1340,6 +1340,7 @@ the last matching regex is used: "micropython", "misc", "extmod", + "stress", ) if args.inlineasm_arch is not None: test_dirs += ("inlineasm/{}".format(args.inlineasm_arch),) @@ -1349,15 +1350,11 @@ the last matching regex is used: test_dirs += ("float",) if args.platform == "pyboard": # run pyboard tests - test_dirs += ("stress", "ports/stm32") - elif args.platform == "mimxrt": - test_dirs += ("stress",) + test_dirs += ("ports/stm32",) elif args.platform == "renesas-ra": test_dirs += ("ports/renesas-ra") elif args.platform == "rp2": - test_dirs += ("stress", "ports/rp2") - elif args.platform == "esp32": - test_dirs += ("stress",) + test_dirs += ("ports/rp2",) elif args.platform == "WiPy": # run WiPy tests test_dirs += ("ports/cc3200",) @@ -1366,7 +1363,6 @@ the last matching regex is used: test_dirs += ( "import", "io", - "stress", "unicode", "cmdline", "ports/unix", |
