Add a --no-capture flag that disables output capture and runs tests serially, letting stdout/stderr flow directly to the terminal:
karva test --no-capture test_debug
This is useful when debugging with print statements or interactive debuggers. Tests run one at a time so their output doesn't interleave.
Similar to pytest's -s flag.
See: https://nexte.st/docs/running/#options-and-arguments
Add a
--no-captureflag that disables output capture and runs tests serially, letting stdout/stderr flow directly to the terminal:This is useful when debugging with print statements or interactive debuggers. Tests run one at a time so their output doesn't interleave.
Similar to pytest's
-sflag.See: https://nexte.st/docs/running/#options-and-arguments