Skip to content

Commit

Permalink
Update noxfile.py
Browse files Browse the repository at this point in the history
Co-authored-by: Matt Fisher <[email protected]>
  • Loading branch information
jhkennedy and mfisher87 authored Nov 4, 2024
1 parent 07e2d85 commit 1ea22fa
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,12 @@ def typecheck(session: nox.Session) -> None:
def tests(session: nox.Session) -> None:
"""Run the unit tests."""
session.install("--editable", ".[test]")
session.run("pytest", "tests/unit", "-rxXs", *session.posargs)
session.run(
"pytest",
"tests/unit",
"-rxXs", # Show extra summary info for (x)fail, (X)pass, and (s)kipped statuses
*session.posargs,
)


@nox.session(name="integration-tests")
Expand Down

0 comments on commit 1ea22fa

Please sign in to comment.