Skip to content

Commit

Permalink
chore: update test config
Browse files Browse the repository at this point in the history
  • Loading branch information
aoekrz committed Aug 22, 2024
1 parent f7a037a commit ae27b90
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,8 @@ jobs:

- name: Functional Tests without coverage
run: |
composer update --prefer-source
export "FUNCTIONAL_XML"=Tests/Functional/phpunit.xml
.Build/bin/phpunit --whitelist Classes --colors -c $FUNCTIONAL_XML Tests/Functional
export "FUNCTIONAL_XML"=.Build/vendor/typo3/testing-framework/Resources/Core/Build/FunctionalTests.xml
.Build/bin/phpunit --colors -c $FUNCTIONAL_XML Tests/Functional
if: matrix.typo3 != '^12.4' || matrix.php != '8.3'
env:
typo3DatabaseHost: 127.0.0.1
Expand All @@ -62,9 +61,8 @@ jobs:

- name: Functional Tests with coverage
run: |
composer update --prefer-source
export "FUNCTIONAL_XML"=Tests/Functional/phpunit.xml
.Build/bin/phpunit --whitelist Classes --coverage-clover=functional-coverage.clover --colors -c $FUNCTIONAL_XML Tests/Functional
export "FUNCTIONAL_XML"=.Build/vendor/typo3/testing-framework/Resources/Core/Build/FunctionalTests.xml
find 'Tests/Functional' -wholename '*Test.php' | parallel --gnu 'echo; echo "Running functional test suite {}"; .Build/bin/phpunit --coverage-filter Classes --coverage-clover={}functionaltest-coverage.clover --colors -c $FUNCTIONAL_XML {}'
if: matrix.typo3 == '^12.4' && matrix.php == '8.3'
env:
typo3DatabaseHost: 127.0.0.1
Expand Down

0 comments on commit ae27b90

Please sign in to comment.