capture
option in ini_options
#10953
-
What's the problem this feature will solve?I'd like to disable the capture feature per-project (equivalent of Describe the solution you'd like[tool.pytest.ini_options]
capture = false Alternative Solutionsnone Additional contextCurrenlty such a config fails with |
Beta Was this translation helpful? Give feedback.
Answered by
nicoddemus
Apr 28, 2023
Replies: 2 comments
-
Hi, You can use [tool.pytest.ini_options]
addopts = "-p no:capture" |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
silverwind
-
Thanks, exactly what I was looking for! |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi,
You can use
addopts
and pass-p no:capture
.