view pytest.ini @ 5997:b313d735d9c8

cleanup: get rid of jn as shortcut for os.path.join It is not used in that many places so it is better to be explicit and use os.path.join . Discussed on https://bitbucket.org/domruf/kallithea/commits/1da05f42bca3f7042c444fda13a1ae1f6b9c300f#comment-2948124 . Modified by Mads Kiilerich.
author domruf <dominikruf@gmail.com>
date Sun, 12 Jun 2016 21:21:43 +0200
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