Files
micropython/tests/import/import_file.py
Damien George 7373cbba6b tests/import: Skip import tests where needed.
Signed-off-by: Damien George <damien@micropython.org>
2025-10-01 23:59:15 +10:00

8 lines
114 B
Python

if "__file__" not in globals():
print("SKIP")
raise SystemExit
import import1b
print(import1b.__file__)