mirror of
https://github.com/nextcloud/server.git
synced 2026-05-28 04:32:30 -04:00
Only loop over Test cases
Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
parent
140580f9d8
commit
547f6ee009
1 changed files with 1 additions and 1 deletions
|
|
@ -358,7 +358,7 @@ function execute_tests {
|
|||
fi
|
||||
|
||||
if [ -d "$2" ]; then
|
||||
for f in $(find "$2" -name '*.php'); do
|
||||
for f in $(find "$2" -name '*Test.php'); do
|
||||
echo "${PHPUNIT[@]}" --configuration phpunit-autotest.xml $GROUP $COVER --log-junit "autotest-results-$DB.xml" "$2" / "$f" "$3"
|
||||
"${PHPUNIT[@]}" --configuration phpunit-autotest.xml $GROUP $COVER --log-junit "autotest-results-$DB.xml" "$f" "$3"
|
||||
RESULT=$?
|
||||
|
|
|
|||
Loading…
Reference in a new issue