Skip to content

Commit 8e64f6d

Browse files
committed
tests/extmod/machine_soft_timer.py: Skip on nrf boards.
They don't have the `freq` argument. Signed-off-by: Damien George <[email protected]>
1 parent a4bed63 commit 8e64f6d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/extmod/machine_soft_timer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
print("SKIP")
1010
raise SystemExit
1111

12-
if sys.platform in ("esp32", "esp8266"):
12+
if sys.platform in ("esp32", "esp8266", "nrf"):
1313
print("SKIP") # TODO: Implement soft timers for esp32/esp8266 ports
1414
raise SystemExit
1515

0 commit comments

Comments
 (0)