mirror of
https://github.com/kubescape/kubescape.git
synced 2026-02-14 18:09:55 +00:00
16 lines
175 B
Python
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()
|