diff --git a/.travis.yml b/.travis.yml index 9fefa61f8cdea9e44308a4c1d4446f7916efdcb8..877e717eafc9a386d6a77d788a34d4089a4488ad 100644 --- a/.travis.yml +++ b/.travis.yml @@ -90,6 +90,7 @@ matrix: esac - os: linux + dist: bionic language: c compiler: gcc env: COVERITY_SCAN=true @@ -125,6 +126,7 @@ matrix: branch_pattern: coverity_scan - os: linux + dist: bionic language: c compiler: gcc env: ENV_COVER=true @@ -230,6 +232,7 @@ matrix: - make > /dev/null - os: linux + dist: bionic language: c compiler: clang env: DESC="linux/clang build" diff --git a/tests/test-all.sh b/tests/test-all.sh index e58a6f51327c066b526d0332a2c7b1678d7cc4d4..f54d094649bb417d2a3d37edac81a64209543182 100755 --- a/tests/test-all.sh +++ b/tests/test-all.sh @@ -33,9 +33,9 @@ echo "### run Python script ###" cd ../pytest if [ "$1" == "cron" ]; then - ./fulltest.sh > /dev/null | tee pytest-out.txt + ./fulltest.sh 2>&1 | grep 'successfully executed\|failed\|fault' | grep -v 'default'| tee pytest-out.txt else - ./smoketest.sh > /dev/null | tee pytest-out.txt + ./smoketest.sh 2>&1 | grep 'successfully executed\|failed\|fault' | grep -v 'default'| tee pytest-out.txt fi totalPySuccess=`grep 'successfully executed' pytest-out.txt | wc -l`