File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 5353 composer update --prefer-dist ${{ matrix.setup != 'next' && format('--prefer-{0}', matrix.setup) || '' }} --no-progress
5454
5555 - name : Run test suite
56- run : vendor/bin/phpunit --coverage-text --coverage-clover=coverage.xml --no-interaction
56+ run : vendor/bin/phpunit --coverage-text --coverage-clover=coverage.xml ${{ matrix.php >= 8 && ' --no-interaction' || '' }}
5757
5858 - name : Coverage
5959 uses : codecov/codecov-action@v3
Original file line number Diff line number Diff line change 4646 MULTI_TESTER_LABELS : install
4747
4848 - name : Run test suite
49- run : vendor/bin/phpunit --no-coverage --no-interaction
49+ run : vendor/bin/phpunit --no-coverage ${{ matrix.php >= 8 && ' --no-interaction' || '' }}
5050 env :
5151 MULTI_TESTER_LABELS : script
Original file line number Diff line number Diff line change 55use JsTransformer \JsTransformer ;
66use NodejsPhpFallback \NodejsPhpFallback ;
77use PHPUnit \Framework \TestCase ;
8+ use PHPUnit_Framework_TestCase ;
89use Phug \JsTransformerExtension ;
910use Phug \JsTransformerFilter ;
1011use Phug \Phug ;
11- use PHPUnit_Framework_TestCase ;
1212
1313if (!class_exists (PHPUnit_Framework_TestCase::class)) {
1414 class_alias (TestCase::class, PHPUnit_Framework_TestCase::class);
You can’t perform that action at this time.
0 commit comments