diff options
author | Damien George <damien@micropython.org> | 2024-10-18 23:11:47 +1100 |
---|---|---|
committer | Damien George <damien@micropython.org> | 2024-10-22 14:31:13 +1100 |
commit | 7d442373afbc685d7becfda68df375a65c6b63f2 (patch) | |
tree | e467bb4fec5f558534ea259cbeb986994c807ce6 /tests/extmod/machine_soft_timer.py | |
parent | d1574de3b6a050ef07c39a131203305f731d39d8 (diff) | |
download | micropython-7d442373afbc685d7becfda68df375a65c6b63f2.tar.gz micropython-7d442373afbc685d7becfda68df375a65c6b63f2.zip |
tests/extmod: Config SPI test for esp8266 and skip SoftTimer test.
Signed-off-by: Damien George <damien@micropython.org>
Diffstat (limited to 'tests/extmod/machine_soft_timer.py')
-rw-r--r-- | tests/extmod/machine_soft_timer.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/extmod/machine_soft_timer.py b/tests/extmod/machine_soft_timer.py index bff9af5b82..1e9c66aa22 100644 --- a/tests/extmod/machine_soft_timer.py +++ b/tests/extmod/machine_soft_timer.py @@ -2,8 +2,8 @@ import sys -if sys.platform == "esp32": - print("SKIP") # TODO: Implement soft timers for esp32 port +if sys.platform in ("esp32", "esp8266"): + print("SKIP") # TODO: Implement soft timers for esp32/esp8266 ports raise SystemExit |