summaryrefslogtreecommitdiff
path: root/tests/run-tests.py
diff options
context:
space:
mode:
authorDamien George <damien@micropython.org>2025-08-10 22:25:15 +1000
committerDamien George <damien@micropython.org>2025-08-15 00:23:16 +1000
commit656582795504cb6c9b025e716f20a2468e5d71ac (patch)
tree0f475b46addebffdb5c2fd6d311f2fb4da51c698 /tests/run-tests.py
parentf493075d88be9ce851c4d401d041b801701975c3 (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-xtests/run-tests.py10
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",