Skip to content

Commit

Permalink
Fix noxfile coverage arguments (#1033)
Browse files Browse the repository at this point in the history
  • Loading branch information
thom-at-redhat committed May 8, 2024
1 parent 9b58ca7 commit cb34c36
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion receptorctl/noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,9 @@ def coverage(session: nox.Session):
install(session, req="tests")
version(session)
session.install("-e", ".")
session.run("pytest", "--cov", "--cov-report", "xml:receptorctl_coverage.xml" "-v", "tests", *session.posargs)
session.run(
"pytest", "--cov", "--cov-report", "term-missing:skip-covered", "--cov-report", "xml:receptorctl_coverage.xml", "--verbose", "tests", *session.posargs
)


@nox.session(python=python_versions)
Expand Down

0 comments on commit cb34c36

Please sign in to comment.