mirror of
https://github.com/kubescape/kubescape.git
synced 2026-03-04 18:50:41 +00:00
19 lines
277 B
Python
19 lines
277 B
Python
import sys
|
|
import smoke_utils
|
|
|
|
|
|
tests_pkg = [
|
|
"test_command"
|
|
, "test_version"
|
|
]
|
|
|
|
|
|
def run(**kwargs):
|
|
for i in tests_pkg:
|
|
m = __import__(i)
|
|
m.run(**kwargs)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
run(kubescape_exec=smoke_utils.get_exec_from_args(sys.argv))
|