mirror of
https://github.com/onyx-and-iris/vban-cmd-python.git
synced 2024-11-15 17:10:46 +00:00
23 lines
481 B
Python
23 lines
481 B
Python
import subprocess
|
|
import sys
|
|
from pathlib import Path
|
|
|
|
|
|
def ex_gui():
|
|
scriptpath = Path.cwd() / "examples" / "gui" / "."
|
|
subprocess.run([sys.executable, str(scriptpath)])
|
|
|
|
|
|
def ex_obs():
|
|
scriptpath = Path.cwd() / "examples" / "obs" / "."
|
|
subprocess.run([sys.executable, str(scriptpath)])
|
|
|
|
|
|
def ex_observer():
|
|
scriptpath = Path.cwd() / "examples" / "observer" / "."
|
|
subprocess.run([sys.executable, str(scriptpath)])
|
|
|
|
|
|
def test():
|
|
subprocess.run(["tox"])
|