We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e8d4527 commit 1a71d30Copy full SHA for 1a71d30
2 files changed
tests/micropython/heapalloc_bytesio.py
@@ -1,4 +1,10 @@
1
-import uio
+try:
2
+ import uio
3
+except ImportError:
4
+ import sys
5
+ print("SKIP")
6
+ sys.exit()
7
+
8
import micropython
9
10
data = b"1234" * 16
tests/micropython/heapalloc_traceback.py
@@ -2,7 +2,12 @@
import sys
11
12
# preallocate exception instance with some room for a traceback
13
global_exc = StopIteration()
0 commit comments