micropython/tests/unix/extra_coverage.py
Damien George d792d9e49e unix: Make extra-coverage function callable from Python scripts.
This allows the output of the extra-coverage tests to be checked using
the normal run-tests script.
2015-05-08 09:18:38 +01:00

9 lines
108 B
Python

try:
extra_coverage
except NameError:
print("SKIP")
import sys
sys.exit()
extra_coverage()