18 lines
No EOL
298 B
Python
Executable file
18 lines
No EOL
298 B
Python
Executable file
#!/usr/bin/env python3
|
|
|
|
import sys
|
|
from common import _operation
|
|
|
|
def run_test(args):
|
|
result = _operation("tests", [
|
|
[
|
|
"python3",
|
|
"-m", "pytest",
|
|
"-s",
|
|
]
|
|
])
|
|
|
|
sys.exit(result.returncode)
|
|
|
|
if __name__=='__main__':
|
|
run_test(sys.argv) |