view pytest.ini @ 8584:d9116644696b

diff: allow commenting on meta lines (Issue #329) There is no good reason it only should be possible to comment on content lines. Other lines might not have an obvious locator, but we can live with that as long as each comment only apply in one place. With this, we actually want the comment bubble on all lines with bubble markup, so we can loosen the css selector.
author Mads Kiilerich <mads@kiilerich.com>
date Thu, 11 Jun 2020 23:04:31 +0200
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