add gui, tests to scripts

add tox to development dependencies

major version bump
This commit is contained in:
2023-06-25 15:00:23 +01:00
parent 9d015755eb
commit 54041503c9
3 changed files with 130 additions and 21 deletions

View File

@@ -2,6 +2,11 @@ import subprocess
from pathlib import Path
def ex_gui():
path = Path.cwd() / "examples" / "gui" / "."
subprocess.run(["py", str(path)])
def ex_obs():
path = Path.cwd() / "examples" / "obs" / "."
subprocess.run(["py", str(path)])
@@ -10,3 +15,7 @@ def ex_obs():
def ex_observer():
path = Path.cwd() / "examples" / "observer" / "."
subprocess.run(["py", str(path)])
def test():
subprocess.run(["tox"])