view pytest.ini @ 8292:f83326e2e66c

hg: read everything from hgrc, without config section whitelisting (Issue #246) The whitelisting seems pointless, is hard to maintain, and can't be customized. Also, mercurial.localrepo.instance will read the full config file anyway.
author Mads Kiilerich <mads@kiilerich.com>
date Fri, 06 Mar 2020 18:10:02 +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