fix(tests): correct coverage command for pytest

This commit is contained in:
Anand Balakrishnan 2023-10-14 23:16:32 -07:00
parent eea3065b4e
commit ecef2b266d
No known key found for this signature in database

View file

@ -183,12 +183,11 @@ def coverage(session: nox.Session):
...
try:
with session.chdir(CURRENT_DIR / "pyargus"):
session.run(
"coverage",
"run",
"--source",
"argus,src",
"pyargus/argus,pyargus/src",
"-m",
"pytest",
silent=True,