wip: runs integration tests undert the v flag

This commit is contained in:
Nuno Maduro
2024-04-28 12:18:11 +01:00
parent 2070538fd3
commit 80530cb1e0
2 changed files with 3 additions and 3 deletions

View File

@ -41,8 +41,8 @@ jobs:
- name: Unit Tests - name: Unit Tests
run: composer test:unit run: composer test:unit
# - name: Parallel Tests - name: Parallel Tests
# run: composer test:parallel run: composer test:parallel
- name: Integration Tests - name: Integration Tests
run: composer test:integration run: composer test:integration

View File

@ -76,7 +76,7 @@
"test:unit": "php bin/pest --colors=always --exclude-group=integration --compact", "test:unit": "php bin/pest --colors=always --exclude-group=integration --compact",
"test:inline": "php bin/pest --colors=always --configuration=phpunit.inline.xml", "test:inline": "php bin/pest --colors=always --configuration=phpunit.inline.xml",
"test:parallel": "php bin/pest --colors=always --exclude-group=integration --parallel --processes=3", "test:parallel": "php bin/pest --colors=always --exclude-group=integration --parallel --processes=3",
"test:integration": "php bin/pest --colors=always --group=integration", "test:integration": "php bin/pest --colors=always --group=integration -v",
"update:snapshots": "REBUILD_SNAPSHOTS=true php bin/pest --colors=always --update-snapshots", "update:snapshots": "REBUILD_SNAPSHOTS=true php bin/pest --colors=always --update-snapshots",
"test": [ "test": [
"@test:refacto", "@test:refacto",