]> Repositories - Adafruit_Blinka-hackapet.git/blob - python/testing/platform/all.py
Placeholder for embedded-only hardware-dependent tests
[Adafruit_Blinka-hackapet.git] / python / testing / platform / all.py
1 """Tests which should run on Micropython or CPython regardless of platform"""
2 import unittest
3
4 def main():
5 #    suite = unittest.TestSuite()
6 #    suite.tests.append()
7     unittest.main("testing.mcp")
8     unittest.main("testing.microcontroller")
9
10 if __name__ == "__main__":
11     main()