voicemeeter-api-python/scripts.py

27 lines
518 B
Python
Raw Normal View History

2022-11-07 20:21:50 +00:00
import subprocess
from pathlib import Path
def ex_dsl():
path = Path.cwd() / "examples" / "dsl" / "."
subprocess.run(["py", str(path)])
def ex_midi():
path = Path.cwd() / "examples" / "midi" / "."
subprocess.run(["py", str(path)])
def ex_obs():
path = Path.cwd() / "examples" / "obs" / "."
subprocess.run(["py", str(path)])
def ex_observer():
path = Path.cwd() / "examples" / "observer" / "."
subprocess.run(["py", str(path)])
2023-06-19 20:03:26 +01:00
def test():
subprocess.run(["pytest", "-v"])