2023-08-10 19:13:34 +01:00
|
|
|
import os
|
2022-11-07 20:26:06 +00:00
|
|
|
import subprocess
|
2023-07-04 19:51:23 +01:00
|
|
|
import sys
|
2022-11-07 20:26:06 +00:00
|
|
|
from pathlib import Path
|
|
|
|
|
|
|
|
|
2023-06-25 15:00:23 +01:00
|
|
|
def ex_gui():
|
2025-01-17 02:51:17 +00:00
|
|
|
scriptpath = Path.cwd() / 'examples' / 'gui' / '.'
|
2023-07-04 19:51:23 +01:00
|
|
|
subprocess.run([sys.executable, str(scriptpath)])
|
2023-06-25 15:00:23 +01:00
|
|
|
|
|
|
|
|
2022-11-07 20:26:06 +00:00
|
|
|
def ex_obs():
|
2025-01-17 02:51:17 +00:00
|
|
|
subprocess.run(['tox', 'r', '-e', 'obs'])
|
2022-11-07 20:26:06 +00:00
|
|
|
|
|
|
|
|
|
|
|
def ex_observer():
|
2025-01-17 02:51:17 +00:00
|
|
|
scriptpath = Path.cwd() / 'examples' / 'observer' / '.'
|
2023-07-04 19:51:23 +01:00
|
|
|
subprocess.run([sys.executable, str(scriptpath)])
|
2023-06-25 15:00:23 +01:00
|
|
|
|
|
|
|
|
2023-08-10 19:13:34 +01:00
|
|
|
def test_basic():
|
2025-01-17 02:51:17 +00:00
|
|
|
os.environ['KIND'] = 'basic'
|
|
|
|
subprocess.run(['tox'])
|
2023-08-10 19:13:34 +01:00
|
|
|
|
|
|
|
|
|
|
|
def test_banana():
|
2025-01-17 02:51:17 +00:00
|
|
|
os.environ['KIND'] = 'banana'
|
|
|
|
subprocess.run(['tox'])
|
2023-08-10 19:13:34 +01:00
|
|
|
|
|
|
|
|
|
|
|
def test_potato():
|
2025-01-17 02:51:17 +00:00
|
|
|
os.environ['KIND'] = 'potato'
|
|
|
|
subprocess.run(['tox'])
|
2023-08-10 19:13:34 +01:00
|
|
|
|
|
|
|
|
|
|
|
def test_all():
|
|
|
|
steps = [test_basic, test_banana, test_potato]
|
|
|
|
[step() for step in steps]
|