Run python tests without capturing stderr/stdout

... so that we can see backtraces
This commit is contained in:
Simon Hausmann 2023-12-14 18:13:43 +01:00 committed by Simon Hausmann
parent 33a1d07226
commit fb76502cf4

View file

@ -7,4 +7,4 @@ import nox
def python(session: nox.Session):
session.env["MATURIN_PEP517_ARGS"] = "--profile=dev"
session.install(".[dev]")
session.run("pytest")
session.run("pytest", "-s")