In the short test summary, report only (x)failed and (X)passed tests. Skipped tests are normal, used when a test cannot run in the current environment. (x)failed or (X)passed tests must be fixed and should be listed.
Signed-off-by: Nir Soffer nsoffer@redhat.com --- tox.ini | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/tox.ini b/tox.ini index 0e337ce..0cadfb5 100644 --- a/tox.ini +++ b/tox.ini @@ -28,11 +28,11 @@ commands = flake8 --statistics tests python
[pytest] # Notes: # --basetemp: we must use /var/tmp as sanlock uses direct I/O. # -vv: increasing verbosify twice shows more detailed failures tracebacks. -# -rxs: show extra test summary: (s)skipped, (x)failed +# -rxX show extra test summary: (x)failed, (X)passed, # --durations: show slowest test duration -addopts = -rxs -vv --basetemp=/var/tmp/sanlock --durations=10 +addopts = -rxX -vv --basetemp=/var/tmp/sanlock --durations=10
[flake8] show_source = True