Skip to content

Commit

Permalink
Set '--slow-last' option when we call pytest in nox session 'coverage…
Browse files Browse the repository at this point in the history
…' so that tests fail faster on CI
  • Loading branch information
NickleDave committed Jul 6, 2024
1 parent 146fb2b commit 38605d0
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 @@ -94,7 +94,7 @@ def coverage(session) -> None:
"""
session.install(".[test]")
session.run(
"pytest", "--cov=./", "--cov-report=xml", *session.posargs
"pytest", "--slow-last", "--cov=./", "--cov-report=xml", *session.posargs
)


Expand Down

0 comments on commit 38605d0

Please sign in to comment.