diff --git a/.gitea/workflows/deploy-to-test.yml b/.gitea/workflows/deploy-to-test.yml index c85e32dd..2523d9f3 100644 --- a/.gitea/workflows/deploy-to-test.yml +++ b/.gitea/workflows/deploy-to-test.yml @@ -111,10 +111,10 @@ jobs: # Run unit and integration tests as separate steps. # The `|| true` ensures the workflow continues even if tests fail, allowing coverage to run. echo "--- Running Unit Tests ---" - npm run test:unit -- --coverage --reporter=verbose --includeTaskLocation --testTimeout=10000 --silent=false || true + npm run test:unit -- --coverage --reporter=verbose --includeTaskLocation --testTimeout=10000 --silent=passed-only || true echo "--- Running Integration Tests ---" - npm run test:integration -- --coverage --reporter=verbose --includeTaskLocation --testTimeout=10000 --silent=false || true + npm run test:integration -- --coverage --reporter=verbose --includeTaskLocation --testTimeout=10000 --silent=passed-only || true # Re-enable secret masking for subsequent steps. echo "::secret-masking::"