From 8fc052d0935f402150a9dc1634ec1e8a86aa90c6 Mon Sep 17 00:00:00 2001 From: onyx-and-iris Date: Fri, 23 Jun 2023 18:18:01 +0100 Subject: [PATCH] new examples added to scripts --- scripts.py | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/scripts.py b/scripts.py index 2eee543..2203318 100644 --- a/scripts.py +++ b/scripts.py @@ -7,6 +7,16 @@ def ex_dsl(): subprocess.run(["py", str(path)]) +def ex_events(): + path = Path.cwd() / "examples" / "events" / "." + subprocess.run(["py", str(path)]) + + +def ex_levels(): + path = Path.cwd() / "examples" / "levels" / "." + subprocess.run(["py", str(path)]) + + def ex_midi(): path = Path.cwd() / "examples" / "midi" / "." subprocess.run(["py", str(path)]) @@ -23,4 +33,4 @@ def ex_observer(): def test(): - subprocess.run(["pytest", "-v"]) + subprocess.run(["tox"])