view pytest.ini @ 5874:b103f41a4954

setup.py: enable pytest-sugar plugin pytest-sugar enables a nice visual representation of test progress and results. Minimum version is set to 0.7.0 as it fixes a problem where skipped tests would not be shown in the test summary. The upper version 1.0.0 is arbitrarily chosen and could be increased as seen fit.
author Thomas De Schampheleire <thomas.de.schampheleire@gmail.com>
date Fri, 05 Feb 2016 21:19:44 +0100
parents d88077fae3d6
children afa5e0bdb76f
line wrap: on
line source

[pytest]
# only look for tests in kallithea/tests
python_files = kallithea/tests/**/test_*.py
addopts =
    # --verbose
    # show extra test summary info as specified by chars (f)ailed, (E)error, (s)skipped, (x)failed, (X)passed, (w)warnings.
    -rfEsxXw
    # Shorter scrollbacks; less stuff to scroll through
    --tb=short