micropython/tests/micropython/kbd_intr.py
Damien George 381cd730c8 tests/micropython: Improve skipping of tests using micropython module.
Signed-off-by: Damien George <damien@micropython.org>
2025-10-01 23:59:15 +10:00

13 lines
237 B
Python

# test the micropython.kbd_intr() function
try:
import micropython
micropython.kbd_intr
except (ImportError, AttributeError):
print("SKIP")
raise SystemExit
# just check we can actually call it
micropython.kbd_intr(3)