mirror of
https://github.com/HackPlan/atom-shell.git
synced 2026-03-29 22:36:11 +08:00
9 lines
149 B
Python
Executable File
9 lines
149 B
Python
Executable File
#!/usr/bin/env python
|
|
|
|
import os
|
|
import subprocess
|
|
|
|
|
|
test = os.path.join(os.path.dirname(__file__), 'test.py')
|
|
subprocess.check_call([test, '--ci'])
|