Skip to content

Commit c045b03

Browse files
Let Waterline multi-database CI finish without Composer process timeout
Disable Composer timeout for Waterline test aggregate
1 parent 5056f3e commit c045b03

1 file changed

Lines changed: 14 additions & 2 deletions

File tree

composer.json

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,20 @@
5151
"@php vendor/bin/testbench serve --ansi"
5252
],
5353
"build": "@php vendor/bin/testbench workbench:build --ansi",
54-
"test": "composer test-mssql && composer test-mysql && composer test-pgsql && composer test-sqlite",
55-
"test-all": "composer test-mssql && composer test-mysql && composer test-pgsql && composer test-sqlite",
54+
"test": [
55+
"Composer\\Config::disableProcessTimeout",
56+
"@test-mssql",
57+
"@test-mysql",
58+
"@test-pgsql",
59+
"@test-sqlite"
60+
],
61+
"test-all": [
62+
"Composer\\Config::disableProcessTimeout",
63+
"@test-mssql",
64+
"@test-mysql",
65+
"@test-pgsql",
66+
"@test-sqlite"
67+
],
5668
"test-mssql": "vendor/bin/phpunit --testdox --configuration=phpunit-mssql.xml",
5769
"test-mysql": "vendor/bin/phpunit --testdox --configuration=phpunit-mysql.xml",
5870
"test-pgsql": "vendor/bin/phpunit --testdox --configuration=phpunit-pgsql.xml",

0 commit comments

Comments
 (0)