view pytest.ini @ 8086:488b52cad890 stable

logging: always invoke fileConfig with '__file__' and 'here' WSGI servers tend to provide '__file__' and 'here' as 'defaults' when invoking fileConfig, so '%(here)s' string interpolation also can be used in logging configuration. Make sure we do the same when we initialize logging without using a WSGI server. It is annoying to have to do this, and it will only in rare cases make any difference ... but it seems like the best option. Patch also modified by Mads Kiilerich.
author Wolfgang Scherer <Wolfgang.Scherer@gmx.de>
date Sun, 29 Dec 2019 17:35:13 +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