From 21dad4a818d3662c8d2f6eb69a6e76b7ed3b2e7b Mon Sep 17 00:00:00 2001 From: Anton Fedurtsya Date: Wed, 15 Nov 2023 18:30:02 +0200 Subject: [PATCH] Disable timeout on codeception test run via composer alias Signed-off-by: Anton Fedurtsya --- composer.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 39e7a4d..06cc270 100644 --- a/composer.json +++ b/composer.json @@ -57,7 +57,10 @@ "phpunit": "vendor/bin/phpunit --bootstrap=/var/www/source/bootstrap.php --config=tests/", "phpunit-coverage": "XDEBUG_MODE=coverage vendor/bin/phpunit --coverage-text --bootstrap=/var/www/source/bootstrap.php --config=tests/ --coverage-html=tests/reports/coverage", - "codeception": "MODULE_IDS=oe_graphql_base,oe_graphql_configuration_access /var/www/vendor/bin/codecept run acceptance -c /var/www/vendor/oxid-esales/graphql-configuration-access/tests/codeception.yml --no-redirect" + "codeception": [ + "Composer\\Config::disableProcessTimeout", + "MODULE_IDS=oe_graphql_base,oe_graphql_configuration_access /var/www/vendor/bin/codecept run acceptance -c /var/www/vendor/oxid-esales/graphql-configuration-access/tests/codeception.yml --no-redirect" + ] }, "config": { "allow-plugins": {