From cfff24518ef007647f737b9c3a81a9984c71a8b2 Mon Sep 17 00:00:00 2001 From: Philipp Date: Sun, 3 Dec 2023 11:45:55 +0100 Subject: [PATCH] Add "memory_limit" parameter to phpunit --- .woodpecker/.phpunit.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.woodpecker/.phpunit.yml b/.woodpecker/.phpunit.yml index f3d60fbf9c..325a2d9c1c 100644 --- a/.woodpecker/.phpunit.yml +++ b/.woodpecker/.phpunit.yml @@ -69,9 +69,9 @@ steps: - if [ "${PHP_MAJOR_VERSION}" = "7.4" -a "${CI_REPO}" = "friendica/friendica" ]; then phpenmod xdebug; export XDEBUG_MODE=coverage; - phpunit --configuration tests/phpunit.xml --coverage-clover clover.xml; + phpunit --configuration tests/phpunit.xml -d memory_limit=-1 --coverage-clover clover.xml; else - phpunit --configuration tests/phpunit.xml; + phpunit --configuration tests/phpunit.xml -d memory_limit=-1; fi codecov: image: friendicaci/codecov