9 lines
149 B
Text
9 lines
149 B
Text
![]() |
#!/usr/bin/env python
|
||
|
|
||
|
import os
|
||
|
import subprocess
|
||
|
|
||
|
|
||
|
test = os.path.join(os.path.dirname(__file__), 'test.py')
|
||
|
subprocess.check_call([test, '--ci'])
|