Skip to content

Commit

Permalink
Add verbosity to phpunit command
Browse files Browse the repository at this point in the history
  • Loading branch information
thelovekesh committed Jan 18, 2024
1 parent cdc2d49 commit bff5dcd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-test-measure.yml
Original file line number Diff line number Diff line change
Expand Up @@ -335,12 +335,12 @@ jobs:

- name: Run tests
if: ${{ matrix.coverage == false }}
run: phpunit
run: phpunit --verbose
working-directory: ${{ env.WP_CORE_DIR }}/src/wp-content/plugins/pwa

- name: Run tests with coverage
if: ${{ matrix.coverage == true }}
run: phpunit --coverage-clover build/logs/clover.xml
run: phpunit --verbose --coverage-clover build/logs/clover.xml
working-directory: ${{ env.WP_CORE_DIR }}/src/wp-content/plugins/pwa

- name: Upload code coverage report
Expand Down

0 comments on commit bff5dcd

Please sign in to comment.