You are here

run-coverage.sh in Service Container 7.2

Same filename and directory in other branches
  1. 8 tests/run-coverage.sh
  2. 7 tests/run-coverage.sh
#!/bin/bash
# @file
# Simple script to load composer and run the tests.

set -e

DIR=$(dirname $0)
cd $DIR
test -f "./vendor/bin/phpunit" || ./install.sh
./vendor/bin/phpunit --coverage-html ./report

File

tests/run-coverage.sh
View source
  1. #!/bin/bash
  2. # @file
  3. # Simple script to load composer and run the tests.
  4. set -e
  5. DIR=$(dirname $0)
  6. cd $DIR
  7. test -f "./vendor/bin/phpunit" || ./install.sh
  8. ./vendor/bin/phpunit --coverage-html ./report