From cda3828c0a43a9b2db10393a3993cb907fa56ad2 Mon Sep 17 00:00:00 2001 From: Lance Pioch Date: Wed, 14 Jan 2026 15:03:49 -0500 Subject: [PATCH] auto-claude: subtask-1-1 - Add --parallel flag to Unit test commands in ci.yaml --- .github/workflows/ci.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index c34981522..17a36ae79 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -62,7 +62,7 @@ jobs: run: touch database/testing.sqlite - name: Unit tests - run: vendor/bin/pest tests/Unit + run: vendor/bin/pest tests/Unit --parallel env: DB_HOST: UNIT_NO_DB SKIP_MIGRATIONS: true @@ -121,7 +121,7 @@ jobs: run: composer install --no-interaction --no-suggest --no-progress --no-scripts - name: Unit tests - run: vendor/bin/pest tests/Unit + run: vendor/bin/pest tests/Unit --parallel env: DB_HOST: UNIT_NO_DB SKIP_MIGRATIONS: true @@ -183,7 +183,7 @@ jobs: run: composer install --no-interaction --no-suggest --no-progress --no-scripts - name: Unit tests - run: vendor/bin/pest tests/Unit + run: vendor/bin/pest tests/Unit --parallel env: DB_HOST: UNIT_NO_DB SKIP_MIGRATIONS: true @@ -251,7 +251,7 @@ jobs: run: composer install --no-interaction --no-suggest --no-progress --no-scripts - name: Unit tests - run: vendor/bin/pest tests/Unit + run: vendor/bin/pest tests/Unit --parallel env: DB_HOST: UNIT_NO_DB SKIP_MIGRATIONS: true