From 29c1744a3a4365cdc3376b9aa058b7b3b8fc14bf Mon Sep 17 00:00:00 2001 From: Cefn Hoile Date: Sat, 17 Feb 2018 00:15:21 +0000 Subject: [PATCH] Placeholder for cross-platform tests --- python/testing/platform/all.py | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 python/testing/platform/all.py 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 -- 2.49.0