view pytest.ini @ 6379:98dd27958280

test: bump pytest minimum version Recent test case changes broke compatibility with pytest < 3.0. FYI, the ~= version spec is a shorthand (PEP 440) used here to select "3.0 or any later 3.* release". We could probably use this more often.
author Søren Løvborg <sorenl@unity3d.com>
date Mon, 02 Jan 2017 20:01:53 +0100
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