voicemeeter-api-python/scripts.py

58 lines
1.2 KiB
Python
Raw Normal View History

2023-08-10 16:27:49 +01:00
import os
2022-11-07 20:21:50 +00:00
import subprocess
import sys
2022-11-07 20:21:50 +00:00
from pathlib import Path
def ex_dsl():
2025-01-15 12:34:31 +00:00
subprocess.run(["tox", "r", "-e", "dsl"])
2022-11-07 20:21:50 +00:00
2023-06-23 18:18:01 +01:00
def ex_events():
scriptpath = Path.cwd() / "examples" / "events" / "."
subprocess.run([sys.executable, str(scriptpath)])
2023-06-23 18:18:01 +01:00
2023-06-24 23:30:35 +01:00
def ex_gui():
scriptpath = Path.cwd() / "examples" / "gui" / "."
subprocess.run([sys.executable, str(scriptpath)])
2023-06-24 23:30:35 +01:00
2023-06-23 18:18:01 +01:00
def ex_levels():
scriptpath = Path.cwd() / "examples" / "levels" / "."
subprocess.run([sys.executable, str(scriptpath)])
2023-06-23 18:18:01 +01:00
2022-11-07 20:21:50 +00:00
def ex_midi():
scriptpath = Path.cwd() / "examples" / "midi" / "."
subprocess.run([sys.executable, str(scriptpath)])
2022-11-07 20:21:50 +00:00
def ex_obs():
2025-01-15 12:34:31 +00:00
subprocess.run(["tox", "r", "-e", "obs"])
2022-11-07 20:21:50 +00:00
def ex_observer():
scriptpath = Path.cwd() / "examples" / "observer" / "."
subprocess.run([sys.executable, str(scriptpath)])
2023-06-19 20:03:26 +01:00
2023-08-10 16:27:49 +01:00
def test_basic():
os.environ["KIND"] = "basic"
2023-06-23 18:18:01 +01:00
subprocess.run(["tox"])
2023-08-10 16:27:49 +01:00
def test_banana():
os.environ["KIND"] = "banana"
subprocess.run(["tox"])
def test_potato():
os.environ["KIND"] = "potato"
subprocess.run(["tox"])
def test_all():
steps = [test_basic, test_banana, test_potato]
[step() for step in steps]