mirror of
https://github.com/letscontrolit/ESPEasy.git
synced 2026-07-27 19:57:38 +00:00
23 lines
384 B
Python
Executable File
23 lines
384 B
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
#runs all test modules
|
|
|
|
import glob
|
|
import importlib
|
|
import os
|
|
|
|
from esptest import *
|
|
|
|
|
|
modules=glob.glob("test[0-9]*.py")
|
|
modules.sort()
|
|
|
|
for module in modules:
|
|
print()
|
|
print()
|
|
log.debug("Starting module "+module)
|
|
# importlib.import_module(module)
|
|
__import__(module.replace(".py",""))
|
|
log.debug("Completed module "+module)
|
|
completed()
|