mosquitto/test/apps/ctrl/test.py
Roger A. Light adea690b9d Combine all ptest tests into a single run, for speed.
Old `make ptest` locally: 1m34
New `make ptest` locally: 55s

Doesn't work on CI for some reason, so actually disabled for
`make ptest`. Use ./run_tests.py instead
2024-11-21 17:07:32 +00:00

17 lines
275 B
Python
Executable file

#!/usr/bin/env python3
import sys
sys.path.insert(0, "../..")
import ptest
tests = [
#(ports, 'path'),
(1, './ctrl-args.py'),
(2, './ctrl-broker.py'),
(2, './ctrl-dynsec.py'),
]
if __name__ == "__main__":
test = ptest.PTest()
test.run_tests(tests)