Skip to content

Commit

Permalink
chore: set up verbose output for tests in nox
Browse files Browse the repository at this point in the history
  • Loading branch information
edgarrmondragon committed Feb 3, 2022
1 parent 0cfc532 commit b4283ed
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 @@ -28,7 +28,7 @@ def install_with_constraints(session: Session, *args, **kwargs) -> None:
@nox.session(python=["3.10", "3.9", "3.8", "3.7", "3.6"])
def tests(session: Session) -> None:
"""Execute pytest tests."""
args = session.posargs or ["--cov", "-m", "not integration_test"]
args = session.posargs or ["--cov", "-vvv", "-m", "not integration_test"]
session.run("poetry", "install", "--no-dev", external=True)
install_with_constraints(
session,
Expand Down

0 comments on commit b4283ed

Please sign in to comment.