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

@ -35,7 +35,13 @@ dev = [
"black",
]
test = ["pytest", "coverage", "hypothesis[lark]"]
test = [
"pytest",
"coverage",
"hypothesis[lark]",
"metric-temporal-logic",
"rtamt",
]
[build-system]
requires = ["maturin>=1.0,<2.0"]
@ -54,6 +60,11 @@ packages = ["argus"]
# ignore_missing_imports = true
show_error_codes = true
[[tool.mypy.overrides]]
module = "mtl"
ignore_missing_imports = true
[tool.ruff]
line-length = 127
select = ["E", "F", "W", "N", "B", "ANN", "PYI"]