mirror of
https://gitflic.ru/project/maks1ms/ocab.git
synced 2024-12-23 16:23:01 +03:00
10 lines
157 B
Python
10 lines
157 B
Python
|
import subprocess # nosec
|
||
|
|
||
|
|
||
|
def main():
|
||
|
subprocess.run(["python", "-u", "-m", "unittest", "discover"]) # nosec
|
||
|
|
||
|
|
||
|
if __name__ == "__main__":
|
||
|
main()
|