Skip to content

Commit 9812c6b

Browse files
committed
Skip coverage check on php 7.3
xdebug support for php 7.3 is in beta and not included in the travis image for php 7.3.
1 parent f98c8e2 commit 9812c6b

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

bin/phpunit-checks

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,9 @@ vendor/bin/phpunit --configuration dev/tests/phpunit.xml --testsuite unit --cove
1515
echo "==============================="
1616
echo " UNIT TEST COVERAGE"
1717
echo "==============================="
18-
vendor/bin/coverage-check clover.xml $UNIT_COVERAGE_THRESHOLD
18+
if [[ ${TRAVIS_PHP_VERSION:0:3} != "7.3" ]]
19+
then vendor/bin/coverage-check clover.xml $UNIT_COVERAGE_THRESHOLD
20+
fi
1921

2022
echo "==============================="
2123
echo " VERIFICATION TESTS"

0 commit comments

Comments
 (0)