From: Cefn Hoile Date: Sat, 17 Feb 2018 02:05:31 +0000 (+0000) Subject: First tests working on ESP8266 X-Git-Tag: 0.1.0~4^2~141 X-Git-Url: https://git.ayoreis.com/Adafruit_Blinka-hackapet.git/commitdiff_plain/dd6fbb097d55861cf02cb985da72084dc2375343 First tests working on ESP8266 --- 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