]> Repositories - Adafruit_Blinka-hackapet.git/blob - python/testing/platform/all.py
Commented
[Adafruit_Blinka-hackapet.git] / python / testing / platform / all.py
1 """Tests which should run on Micropython or CPython regardless of platform"""
2 from testing import test_module
3 import testing.mcp
4 import testing.microcontroller
5
6 def main():
7     test_module(testing.mcp)
8     test_module(testing.microcontroller)
9
10 if __name__ == "__main__":
11     main()