From 9c8ef7e97e4044dfdc6cb97a3c0d34e6591b6f8a Mon Sep 17 00:00:00 2001 From: Andrew Longosz Date: Wed, 4 Oct 2023 12:26:33 +0200 Subject: [PATCH] Disabled process timeout when running integration tests --- composer.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 81240d52..55063937 100644 --- a/composer.json +++ b/composer.json @@ -53,7 +53,10 @@ }, "scripts": { "test": "phpunit --bootstrap tests/bootstrap.php -c phpunit.xml", - "test-integration-solr": "phpunit --bootstrap tests/bootstrap.php -c vendor/ezsystems/ezplatform-kernel/phpunit-integration-legacy-solr.xml", + "test-integration-solr": [ + "Composer\\Config::disableProcessTimeout", + "phpunit --bootstrap tests/bootstrap.php -c vendor/ezsystems/ezplatform-kernel/phpunit-integration-legacy-solr.xml" + ], "fix-cs": "php-cs-fixer fix -v --show-progress=estimating", "check-cs": "php-cs-fixer fix --dry-run -v --show-progress=estimating", "phpstan": "phpstan analyse"