mirror of
https://github.com/electron/electron.git
synced 2026-01-14 18:08:07 -05: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'])
|