]> Repositories - Adafruit_Blinka-hackapet.git/blob - python/testing/platform/all.py
f760455699a9bfc1a011bdb9e85f1c97151b1d7a
[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()