From b8a4843db5a683e7a15d4c049371a526f87e1716 Mon Sep 17 00:00:00 2001 From: Peter Wu Date: Wed, 19 Dec 2018 21:35:17 +0100 Subject: [PATCH] test: enable extra test summary by default This reports the reason why tests are skipped (for example, if a certain binary was not built). Change-Id: I19095f43f69228116d71b52380814a61894754af Reviewed-on: https://code.wireshark.org/review/31131 Petri-Dish: Peter Wu Tested-by: Petri Dish Buildbot Reviewed-by: Peter Wu --- .travis.yml | 2 +- appveyor.yml | 2 +- test/pytest.ini | 1 + 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 6751cf3cce..c31ed16a96 100644 --- a/.travis.yml +++ b/.travis.yml @@ -71,6 +71,6 @@ before_script: script: - ninja - ninja test-programs - - pytest -nauto -ra -v ../test + - pytest -nauto -v ../test after_script: - if [ -f run/tshark ]; then run/tshark --version; fi diff --git a/appveyor.yml b/appveyor.yml index 501e15aa90..c20b82735c 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -56,7 +56,7 @@ before_test: test_script: - set WS_BIN_PATH=%CD%\run\%CONFIGURATION% - - pytest -nauto -ra ..\test + - pytest -nauto ..\test on_finish: - ps: | diff --git a/test/pytest.ini b/test/pytest.ini index 129efd7545..4ec2f9ee11 100644 --- a/test/pytest.ini +++ b/test/pytest.ini @@ -1,2 +1,3 @@ [pytest] python_files=suite_*.py group_*.py +addopts = -ra