diff --git a/noxfile.py b/noxfile.py index 02d9108..f5b4e53 100644 --- a/noxfile.py +++ b/noxfile.py @@ -183,16 +183,15 @@ def coverage(session: nox.Session): ... try: - with session.chdir(CURRENT_DIR / "pyargus"): - session.run( - "coverage", - "run", - "--source", - "argus,src", - "-m", - "pytest", - silent=True, - ) + session.run( + "coverage", + "run", + "--source", + "pyargus/argus,pyargus/src", + "-m", + "pytest", + silent=True, + ) except Exception: ...