tests/basic/[a-f]*: Make skippable.
For small ports which don't have all features enabled.
This commit is contained in:
@@ -1,5 +1,10 @@
|
||||
# test MicroPython-specific features of array.array
|
||||
import array
|
||||
try:
|
||||
import array
|
||||
except ImportError:
|
||||
import sys
|
||||
print("SKIP")
|
||||
sys.exit()
|
||||
|
||||
# arrays of objects
|
||||
a = array.array('O')
|
||||
|
||||
Reference in New Issue
Block a user