run-coverage.sh in Service Container 8
Same filename and directory in other branches
#!/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.shView source
- #!/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