This is an automated email from the git hooks/post-receive script.
nsoffer pushed a commit to branch master in repository sanlock.
commit 1a6283528075469cdb7f75859bb3333c560e7a55 Author: Nir Soffer nsoffer@redhat.com AuthorDate: Sun Jun 16 18:27:20 2019 +0300
python: Don't report skipped tests
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 @@ -30,9 +30,9 @@ commands = flake8 --statistics tests python # 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
sanlock-devel@lists.fedorahosted.org