diff options
| author | Angus Gratton <angus@redyak.com.au> | 2024-08-06 15:47:25 +1000 |
|---|---|---|
| committer | Damien George <damien@micropython.org> | 2024-08-14 12:56:56 +1000 |
| commit | 80616aee71afedc3c7bfb013d87d8102981aa6b2 (patch) | |
| tree | 50ab5f8a43d0b6af58b71de11fd135a1802d3b9e | |
| parent | e3955f421d10111271dfb6a2774e742ed01c1d7b (diff) | |
tests/run-tests.py: Enable stress tests on esp32 port.
Now passing on ESP32-S3 and ESP32-C3.
This work was funded through GitHub Sponsors.
Signed-off-by: Angus Gratton <angus@redyak.com.au>
| -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 e7ba0de56..83344714c 100755 --- a/tests/run-tests.py +++ b/tests/run-tests.py @@ -1121,7 +1121,7 @@ the last matching regex is used: elif args.target == "rp2": test_dirs += ("float", "stress", "inlineasm", "thread", "ports/rp2") elif args.target == "esp32": - test_dirs += ("float", "thread") + test_dirs += ("float", "stress", "thread") elif args.target in ("esp8266", "minimal", "nrf"): test_dirs += ("float",) elif args.target == "wipy": |
