We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9f6385e commit 2da6904Copy full SHA for 2da6904
.github/workflows/test.yml
@@ -91,7 +91,14 @@ jobs:
91
- name: 'PHPUnit: remove config file'
92
run: rm phpunit.xml.dist
93
94
+ # Useless tests were not reported for before PHPUnit 6, so it doesn't
95
+ # understand the CLI argument.
96
- name: 'PHPUnit: run the tests'
97
+ if: ${{ matrix.php < 7.0 }}
98
+ run: vendor/bin/phpunit tests/AllTests.php --bootstrap=tests/bootstrap.php
99
+
100
+ - name: 'PHPUnit: run the tests, dont report useless'
101
+ if: ${{ matrix.php >= 7.0 }}
102
run: vendor/bin/phpunit tests/AllTests.php --bootstrap=tests/bootstrap.php --dont-report-useless-tests
103
104
- name: 'PHPCS: check code style without cache, no parallel'
0 commit comments