From 80530cb1e0eef249224c4f8c194670f23ea6a61b Mon Sep 17 00:00:00 2001 From: Nuno Maduro Date: Sun, 28 Apr 2024 12:18:11 +0100 Subject: [PATCH] wip: runs integration tests undert the `v` flag --- .github/workflows/tests.yml | 4 ++-- composer.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 17f67fd2..77de9f34 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -41,8 +41,8 @@ jobs: - name: Unit Tests run: composer test:unit - # - name: Parallel Tests - # run: composer test:parallel + - name: Parallel Tests + run: composer test:parallel - name: Integration Tests run: composer test:integration diff --git a/composer.json b/composer.json index c98b413f..9e14b68d 100644 --- a/composer.json +++ b/composer.json @@ -76,7 +76,7 @@ "test:unit": "php bin/pest --colors=always --exclude-group=integration --compact", "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: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", "test": [ "@test:refacto",