<div dir="ltr"><div class="gmail_extra"><span style="font-size:12.8000001907349px">Also, and the following doesn't require installing any plugins:</span><div style="font-size:12.8000001907349px"><br></div><div style="font-size:12.8000001907349px">py.test -r fEsxXw<br></div><div style="font-size:12.8000001907349px"><br></div><div style="font-size:12.8000001907349px">That looks pretty unintelligible but basically you're telling the -r (report) option what to display more info about. Do `pytest --help` and look at the documentation for -r and it shows you what all those letters mean.</div><div style="font-size:12.8000001907349px"><br></div><div style="font-size:12.8000001907349px">If you want this to be the default whenever running `py.test`, you can set it in pytest.ini or set an environment variable. See <a href="https://pytest.org/latest/customize.html#adding-default-options" target="_blank">https://pytest.org/latest/customize.html#adding-default-options</a></div><div style="font-size:12.8000001907349px"><br></div><div style="font-size:12.8000001907349px">One of the projects that I work on has a pytest.ini that looks like this:</div><div style="font-size:12.8000001907349px"><br></div><div style="font-size:12.8000001907349px"><div style="font-size:12.8000001907349px">[pytest]</div><div style="font-size:12.8000001907349px">norecursedirs = build docs/_build SQLAlchemy* .* stuff venv *.egg .tox *.venv</div><div style="font-size:12.8000001907349px">addopts =</div><div style="font-size:12.8000001907349px">    # --verbose</div><div style="font-size:12.8000001907349px">    --tb short</div><div style="font-size:12.8000001907349px">    # --capture no</div><div style="font-size:12.8000001907349px">    # show extra test summary info as specified by chars (f)ailed, (E)error, (s)skipped, (x)failed, (X)passed.</div><div style="font-size:12.8000001907349px">    -rfEsxX</div><div style="font-size:12.8000001907349px">    # --junitxml=junit.xml</div><div style="font-size:12.8000001907349px">    # --cov=pymssql --cov-report=xml --cov-report=term-missing</div><div style="font-size:12.8000001907349px">markers =</div><div style="font-size:12.8000001907349px">    slow: Mark a pymssql test as slow (usually taking more one second or more).</div></div></div></div>