mirror of
https://github.com/onyx-and-iris/xair-api-python.git
synced 2024-11-15 17:40:57 +00:00
13 lines
257 B
Python
13 lines
257 B
Python
|
import subprocess
|
||
|
from pathlib import Path
|
||
|
|
||
|
|
||
|
def test_xair():
|
||
|
path = Path.cwd() / "tests" / "xair"
|
||
|
subprocess.run(["pytest", "-v", str(path)])
|
||
|
|
||
|
|
||
|
def test_x32():
|
||
|
path = Path.cwd() / "tests" / "x32"
|
||
|
subprocess.run(["pytest", "-v", str(path)])
|