add ex_obs to scripts

This commit is contained in:
onyx-and-iris
2022-11-07 20:06:56 +00:00
parent 2732e56a86
commit 981f4b57f8
2 changed files with 8 additions and 3 deletions

View File

@@ -2,6 +2,11 @@ import subprocess
from pathlib import Path
def ex_obs():
path = Path.cwd() / "examples" / "xair_obs" / "."
subprocess.run(["py", str(path)])
def test_xair():
path = Path.cwd() / "tests" / "xair"
subprocess.run(["pytest", "-v", str(path)])