Skip to content

Commit 1e738ba

Browse files
committed
Disable pytest capturing so unexpected writes are seen
1 parent 49b74ca commit 1e738ba

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tox.ini

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ deps =
1010
mock >= 0.5.0
1111
passenv = END_TO_END
1212
commands =
13-
pytest {posargs}
13+
pytest --capture=no {posargs}
1414

1515
[testenv:py27-configparser]
1616
;see https://github.com/Supervisor/supervisor/issues/1230
@@ -24,15 +24,15 @@ commands = {[testenv]commands}
2424
[testenv:cover]
2525
basepython = python2.7
2626
commands =
27-
pytest --cov=supervisor --cov-report=term-missing --cov-report=xml {posargs}
27+
pytest --capture=no --cov=supervisor --cov-report=term-missing --cov-report=xml {posargs}
2828
deps =
2929
{[testenv]deps}
3030
pytest-cov
3131

3232
[testenv:cover3]
3333
basepython = python3.7
3434
commands =
35-
pytest --cov=supervisor --cov-report=term-missing --cov-report=xml {posargs}
35+
pytest --capture=no --cov=supervisor --cov-report=term-missing --cov-report=xml {posargs}
3636
deps =
3737
{[testenv:cover]deps}
3838

0 commit comments

Comments
 (0)