Files
kubescape/smoke_testing/init.py
2021-10-31 15:05:22 +02:00

16 lines
175 B
Python

tests_pkg = [
"test_command"
, "test_version"
]
def run():
for i in tests_pkg:
m = __import__(i)
m.run()
if __name__ == "__main__":
run()