mirror of
https://github.com/eclipse-mosquitto/mosquitto.git
synced 2026-05-08 00:30:12 +02:00
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
17 lines
275 B
Python
Executable file
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)
|