Skip to content

Commit ee2ab54

Browse files
committed
Tweak how tests are run with nox
1 parent cdae236 commit ee2ab54

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

noxfile.py

+6-1
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,12 @@ def lint(session):
9898
def test(session):
9999
session.install("-e", ".", "-r", "tests/requirements.txt")
100100

101-
args = session.posargs or ["-n", "auto", "--cov", PACKAGE_NAME]
101+
args = session.posargs or [
102+
"-n=auto",
103+
"--cov=src/",
104+
"--cov-report=term-missing",
105+
"--verbose",
106+
]
102107
session.run("pytest", *args)
103108

104109

0 commit comments

Comments
 (0)