view pytest.ini @ 7772:66c208bf56fe

ssh: user management of ssh keys Add user interface for managing SSH based access. The work in this commit is based heavily off of the existing API key code for the sake of consistency. Updates to use Bootstrap, request.authuser, POST methods and pytest by Anton Schur <tonich.sh@gmail.com>. Additional Bootstrap fixes by Dominik Ruf. The original code has been heavily modified by Mads Kiilerich.
author Tim Freund <tim@freunds.net>
date Mon, 17 Nov 2014 14:40:35 -0500
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