view pytest.ini @ 8228:d122a9532630

setup: bump version numbers to current max This will most likely give best py3 support, and we need thorough testing anyway. Based on 'pip freeze' before/after: sed -i '/>=[^#]*$/s/, < [0-9.]\+//g' setup.py dev_requirements.txt
author Mads Kiilerich <mads@kiilerich.com>
date Thu, 06 Feb 2020 02:38:25 +0100
parents afa5e0bdb76f
children
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
    #
    --doctest-modules
    --doctest-ignore-import-errors