From c0263173d2d7ae0281476ba5f3b1f62b4764af58 Mon Sep 17 00:00:00 2001 From: Thomas Mueller Date: Tue, 5 Feb 2013 20:20:55 +0100 Subject: [PATCH] add phpunit configuration for autotest withou the json listener because this pollutes the console --- autotest.sh | 2 +- tests/phpunit-autotest.xml | 14 ++++++++++++++ 2 files changed, 15 insertions(+), 1 deletion(-) create mode 100644 tests/phpunit-autotest.xml diff --git a/autotest.sh b/autotest.sh index 744bcdbe8f9..fdf6d2fe098 100755 --- a/autotest.sh +++ b/autotest.sh @@ -90,7 +90,7 @@ function execute_tests { rm -rf coverage-html-$1 mkdir coverage-html-$1 php -f enable_all.php - phpunit --log-junit autotest-results-$1.xml --coverage-clover autotest-clover-$1.xml --coverage-html coverage-html-$1 + phpunit --configuration phpunit-autotest.xml --log-junit autotest-results-$1.xml --coverage-clover autotest-clover-$1.xml --coverage-html coverage-html-$1 } # diff --git a/tests/phpunit-autotest.xml b/tests/phpunit-autotest.xml new file mode 100644 index 00000000000..23cd123edc6 --- /dev/null +++ b/tests/phpunit-autotest.xml @@ -0,0 +1,14 @@ + + + + lib/ + apps.php + + + + .. + + ../3rdparty + + + -- 2.39.5