Skip to content

Commit 591a7e9

Browse files
committed
chore: test command fixes
1 parent 0ce1da7 commit 591a7e9

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/test-runner.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ jobs:
7070
composer update --${{ matrix.dependency-version }} --prefer-dist --no-progress --no-interaction
7171
7272
- name: Run test suite
73-
run: composer test -- --shard=${{ matrix.shard }}/4 --coverage-clover ./coverage.xml
73+
run: vendor/bin/pest --parallel --shard=${{ matrix.shard }}/4 --coverage-clover ./coverage.xml
7474

7575
- name: Upload coverage reports to Codecov
7676
# Make sure the Codecov action is only executed once

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@
6666
"post-install-cmd": "@setup",
6767
"post-update-cmd": "@setup",
6868
"format": "vendor/bin/pint",
69-
"test": "vendor/bin/testbench package:test --parallel",
69+
"test": "vendor/bin/pest --parallel",
7070
"test-shard": "vendor/bin/pest --shard=%SHARD%/%SHARDS%",
7171
"test-shard-1": "vendor/bin/pest --shard=1/4",
7272
"test-shard-2": "vendor/bin/pest --shard=2/4",

0 commit comments

Comments
 (0)