X-Git-Url: https://git.ayoreis.com/Adafruit_Blinka-hackapet.git/blobdiff_plain/29c1744a3a4365cdc3376b9aa058b7b3b8fc14bf..407308219c2a647970137a9635cb1573ff34ef0e:/python/testing/platform/all.py?ds=inline diff --git a/python/testing/platform/all.py b/python/testing/platform/all.py index f760455..57f7059 100644 --- a/python/testing/platform/all.py +++ b/python/testing/platform/all.py @@ -1,11 +1,11 @@ """Tests which should run on Micropython or CPython regardless of platform""" -import unittest +from testing import test_module +import testing.mcp +import testing.microcontroller def main(): -# suite = unittest.TestSuite() -# suite.tests.append() - unittest.main("testing.mcp") - unittest.main("testing.microcontroller") + test_module(testing.mcp) + test_module(testing.microcontroller) if __name__ == "__main__": main() \ No newline at end of file