From: Cefn Hoile Date: Sat, 17 Feb 2018 00:15:21 +0000 (+0000) Subject: Placeholder for cross-platform tests X-Git-Tag: 0.1.0~4^2~153 X-Git-Url: https://git.ayoreis.com/Adafruit_Blinka-hackapet.git/commitdiff_plain/29c1744a3a4365cdc3376b9aa058b7b3b8fc14bf Placeholder for cross-platform tests --- diff --git a/python/testing/platform/all.py b/python/testing/platform/all.py new file mode 100644 index 0000000..f760455 --- /dev/null +++ b/python/testing/platform/all.py @@ -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