summaryrefslogtreecommitdiff
path: root/tests/micropython/ringio.py
diff options
context:
space:
mode:
authorDamien George <damien@micropython.org>2025-09-14 11:51:36 +1000
committerDamien George <damien@micropython.org>2025-10-01 23:59:15 +1000
commit381cd730c834a1d071e7e90787ef7354b8532142 (patch)
tree5245515bb36effd32c54959d30fbb61e1e2dc52d /tests/micropython/ringio.py
parent3de5a4c63c4414a35f31ff50e3642129c1eada02 (diff)
tests/micropython: Improve skipping of tests using micropython module.
Signed-off-by: Damien George <damien@micropython.org>
Diffstat (limited to 'tests/micropython/ringio.py')
-rw-r--r--tests/micropython/ringio.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/micropython/ringio.py b/tests/micropython/ringio.py
index 410928879..d82c04565 100644
--- a/tests/micropython/ringio.py
+++ b/tests/micropython/ringio.py
@@ -1,10 +1,10 @@
# Check that micropython.RingIO works correctly.
-import micropython
-
try:
+ import micropython
+
micropython.RingIO
-except AttributeError:
+except (ImportError, AttributeError):
print("SKIP")
raise SystemExit