Skip to content

Commit d37e91b

Browse files
committed
fix phpunit configuration for 7.1 and 7.2 (remove syntaxCheck)
1 parent 9320a8b commit d37e91b

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ jobs:
2929
- name: Run test suite
3030
run: |
3131
mkdir ./coverage
32+
php -v
3233
php -v > ./coverage/version-php.txt
3334
./vendor/bin/phpunit --version > ./coverage/version-phpunit.txt
3435
./vendor/bin/phpunit --configuration ./phpunit-${{ matrix.php-version }}.xml --coverage-clover ./coverage/coverage.clover --coverage-html ./coverage/html/

phpunit-7.1.xml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@
88
convertNoticesToExceptions="true"
99
convertWarningsToExceptions="true"
1010
processIsolation="false"
11-
stopOnFailure="false"
12-
syntaxCheck="false">
11+
stopOnFailure="false">
1312

1413
<filter>
1514
<whitelist>

phpunit-7.2.xml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@
88
convertNoticesToExceptions="true"
99
convertWarningsToExceptions="true"
1010
processIsolation="false"
11-
stopOnFailure="false"
12-
syntaxCheck="false">
11+
stopOnFailure="false">
1312

1413
<filter>
1514
<whitelist>

0 commit comments

Comments
 (0)