Skip to content

Commit

Permalink
noxfile: Added -v to the unit test runner so we know where we are t…
Browse files Browse the repository at this point in the history
…est wise
  • Loading branch information
lethalbit committed Dec 25, 2024
1 parent fbd994b commit 86d5ce9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def test(session: Session) -> None:
out_dir.mkdir(parents = True, exist_ok = True)
coverage = '--coverage' in session.posargs

unitest_args = ('-m', 'unittest', 'discover', '-s', str(ROOT_DIR))
unitest_args = ('-m', 'unittest', 'discover', '-v', '-s', str(ROOT_DIR))

session.install('.')
if coverage:
Expand Down

0 comments on commit 86d5ce9

Please sign in to comment.