Skip to content

Commit

Permalink
try external=True in session run command
Browse files Browse the repository at this point in the history
  • Loading branch information
joshuadavidthomas committed May 11, 2024
1 parent 3c99a40 commit 4329d8d
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
Expand Up @@ -78,9 +78,9 @@ def tests(session, django):
shutil.which("op")

if session.posargs:
session.run("python", "-m", "pytest", *session.posargs)
session.run("python", "-m", "pytest", *session.posargs, external=True)
else:
session.run("python", "-m", "pytest")
session.run("python", "-m", "pytest", external=True)


@nox.session
Expand Down

0 comments on commit 4329d8d

Please sign in to comment.