phpunit-checks 738 Bytes
Newer Older
Ketan's avatar
Ketan committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
# Copyright © Magento, Inc. All rights reserved.
# See COPYING.txt for license details.

# REMEMBER TO UPDATE THE .BAT FILE

UNIT_COVERAGE_THRESHOLD=20

set -e

echo "==============================="
echo "          UNIT TESTS"
echo "==============================="
vendor/bin/phpunit --configuration dev/tests/phpunit.xml --testsuite unit --coverage-clover clover.xml

echo "==============================="
echo "       UNIT TEST COVERAGE"
echo "==============================="
vendor/bin/coverage-check clover.xml $UNIT_COVERAGE_THRESHOLD

echo "==============================="
echo "      VERIFICATION TESTS"
echo "==============================="
vendor/bin/phpunit --configuration dev/tests/phpunit.xml --testsuite verification