]> Repositories - Adafruit_Blinka-hackapet.git/commitdiff
Placeholder for cross-platform tests
authorCefn Hoile <github.com@cefn.com>
Sat, 17 Feb 2018 00:15:21 +0000 (00:15 +0000)
committerCefn Hoile <github.com@cefn.com>
Sat, 17 Feb 2018 00:15:21 +0000 (00:15 +0000)
python/testing/platform/all.py [new file with mode: 0644]

diff --git a/python/testing/platform/all.py b/python/testing/platform/all.py
new file mode 100644 (file)
index 0000000..f760455
--- /dev/null
@@ -0,0 +1,11 @@
+"""Tests which should run on Micropython or CPython regardless of platform"""
+import unittest
+
+def main():
+#    suite = unittest.TestSuite()
+#    suite.tests.append()
+    unittest.main("testing.mcp")
+    unittest.main("testing.microcontroller")
+
+if __name__ == "__main__":
+    main()
\ No newline at end of file