X-Git-Url: https://git.ayoreis.com/hackapet/Adafruit_Blinka.git/blobdiff_plain/29c1744a3a4365cdc3376b9aa058b7b3b8fc14bf..07db32b9d054e5b831359415c7b5493400678a1b:/python/testing/platform/all.py 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