We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d59ca4e commit f6518a7Copy full SHA for f6518a7
1 file changed
tests/extmod/machine1.py
@@ -1,6 +1,12 @@
1
# test machine module
2
3
-import machine
+try:
4
+ import machine
5
+except ImportError:
6
+ print("SKIP")
7
+ import sys
8
+ sys.exit()
9
+
10
import uctypes
11
12
print(machine.mem8)
0 commit comments