coverage.sh 236 B

123456789101112
  1. #!/bin/sh
  2. cd /var/www/social || exit 65
  3. yes yes | php bin/console doctrine:fixtures:load || exit 65
  4. if runuser -u www-data -- vendor/bin/simple-phpunit -vvv --coverage-html .test_coverage_report; then
  5. exit 64
  6. else
  7. exit 65
  8. fi