test(pyargus): add tests comparing semantics against metric-temporal-logic

This commit is contained in:
Anand Balakrishnan 2023-10-15 14:39:09 -07:00
parent 192bb20380
commit 77a9106e8b
No known key found for this signature in database
6 changed files with 135 additions and 18 deletions

View file

@ -136,7 +136,7 @@ def mypy(session: nox.Session):
def tests(session: nox.Session):
session.conda_install("pytest", "hypothesis", "lark")
session.env.update(ENV)
session.install("./pyargus")
session.install("./pyargus[test]")
try:
session.run(
"cargo", "test", "--workspace", "--exclude", "pyargus", external=True
@ -181,6 +181,8 @@ def coverage(session: nox.Session):
"develop",
"-m",
"./pyargus/Cargo.toml",
"-E",
"test",
silent=True,
)
try: