From 95efb9652e4cecebd180e8dcc0455a5bdc263296 Mon Sep 17 00:00:00 2001 From: root Date: Tue, 9 Jun 2026 00:23:40 -0400 Subject: [PATCH] Fix PHPUnit CI test options --- .gitlab-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 3185174f..b57a8db0 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -108,8 +108,8 @@ phpunit: script: - mkdir -p reports - bash -o pipefail -c 'php artisan migrate --force 2>&1 | tee reports/migrate.log' - - bash -o pipefail -c 'php artisan test --testsuite=Feature --no-interaction --log-junit reports/phpunit-feature.xml 2>&1 | tee reports/phpunit-feature.log' - - bash -o pipefail -c 'php artisan test --testsuite=Unit --no-interaction --log-junit reports/phpunit-unit.xml 2>&1 | tee reports/phpunit-unit.log' + - bash -o pipefail -c 'php artisan test --testsuite=Feature --log-junit reports/phpunit-feature.xml 2>&1 | tee reports/phpunit-feature.log' + - bash -o pipefail -c 'php artisan test --testsuite=Unit --log-junit reports/phpunit-unit.xml 2>&1 | tee reports/phpunit-unit.log' artifacts: when: always expire_in: 7 days