Skip to content

Commit

Permalink
get verbose output from pip
Browse files Browse the repository at this point in the history
  • Loading branch information
ngoldbaum committed Jan 27, 2025
1 parent 4d9c0d0 commit 3ca4488
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions noxfile.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
import nox

nox.options.reuse_existing_virtualenvs = True
nox.options.default_venv_backend = "uv|virtualenv"
nox.options.default_venv_backend = "virtualenv"


@nox.session
def tests(session: nox.Session) -> None:
session.install("coverage")
session.install(".[tests]")
session.install(".[tests]", "-vvv")

session.run(
"coverage", "run", "-m", "pytest", "--strict-markers", *session.posargs
Expand Down

0 comments on commit 3ca4488

Please sign in to comment.