mirror of
https://github.com/onyx-and-iris/vban-cmd-python.git
synced 2025-01-18 02:20:48 +00:00
39 lines
733 B
Python
39 lines
733 B
Python
import os
|
|
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():
|
|
subprocess.run(['tox', 'r', '-e', 'obs'])
|
|
|
|
|
|
def ex_observer():
|
|
scriptpath = Path.cwd() / 'examples' / 'observer' / '.'
|
|
subprocess.run([sys.executable, str(scriptpath)])
|
|
|
|
|
|
def test_basic():
|
|
os.environ['KIND'] = 'basic'
|
|
subprocess.run(['tox'])
|
|
|
|
|
|
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]
|