Skip to content

Commit 00df57a

Browse files
committed
Disable composer task timeout to finish running API tests
https://getcomposer.org/doc/06-config.md#process-timeout
1 parent eaa953d commit 00df57a

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

api/composer.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,10 @@
8585
"scripts": {
8686
"cs-check": "php-cs-fixer fix --dry-run",
8787
"cs-fix": "php-cs-fixer fix",
88-
"test": "bin/phpunit -d memory_limit=-1",
88+
"test": [
89+
"Composer\\Config::disableProcessTimeout",
90+
"bin/phpunit -d memory_limit=-1"
91+
],
8992
"auto-scripts": {
9093
"cache:clear": "symfony-cmd",
9194
"assets:install %PUBLIC_DIR%": "symfony-cmd"

0 commit comments

Comments
 (0)