You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- #!/bin/sh
-
- cd /var/www/social || exit 65
-
- yes yes | php bin/console doctrine:fixtures:load || exit 65
-
- if bin/phpunit --coverage-html .test_coverage_report; then
- exit 64
- else
- exit 65
- fi
|