buildroot/support/testing/tests/package/sample_python_rpi_gpio.py

7 lines
204 B
Python
Raw Permalink Normal View History

2024-02-18 09:22:07 +08:00
try:
import RPi.GPIO # noqa
except RuntimeError as e:
assert(str(e) == 'This module can only be run on a Raspberry Pi!')
else:
raise RuntimeError('Import succeeded when it should not have!')