From 1423a36ed6e3a4bd254f359b77fccb3c8b3f62f6 Mon Sep 17 00:00:00 2001 From: Herbert Maschke Date: Wed, 22 Jan 2020 15:16:25 +0100 Subject: [PATCH] remove codeception progress reporter to make compatibility with codeception 4 --- bin/test.sh | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/bin/test.sh b/bin/test.sh index 499caa45d..6f82ff04a 100755 --- a/bin/test.sh +++ b/bin/test.sh @@ -1,14 +1,5 @@ #!/bin/bash -PROGRESS_REPORTER="--ext Codeception\\ProgressReporter\\ProgressReporter" - - while getopts ":c" arg; do - case $arg in - # c)lassic reporter - c) PROGRESS_REPORTER="";; - esac - done - printf "### start preparation ###\n" WORKPATH=$(dirname ${0}) @@ -31,7 +22,6 @@ printf "### start tests ###\n" SUCCESS=1 execSuite() { ${WORKPATH}/../vendor/bin/codecept run ${1} \ - ${PROGRESS_REPORTER} \ --xml report_${1}.xml ${CODECEPT_OPTIONS} | tee ${LOG_DIR}/tests_${1}.log if [[ ${PIPESTATUS[0]} -ne 0 ]] then