auto-claude: subtask-1-1 - Add --parallel flag to Unit test commands in ci.yaml

This commit is contained in:
Lance Pioch
2026-01-14 15:03:49 -05:00
parent 0e810f3110
commit cda3828c0a

View File

@@ -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