Skip to content

Commit

Permalink
fix: coverage --parallel to --parallel-mode
Browse files Browse the repository at this point in the history
  • Loading branch information
gatoniel committed Oct 22, 2024
1 parent 757fb40 commit c33e787
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,14 @@ def tests(session: Session) -> None:
"tensorflow",
)
try:
session.run("coverage", "run", "--parallel", "-m", "pytest", *session.posargs)
session.run(
"coverage",
"run",
"--parallel-mode",
"-m",
"pytest",
*session.posargs,
)
finally:
if session.interactive:
session.notify("coverage", posargs=[])
Expand Down

0 comments on commit c33e787

Please sign in to comment.