2021-05-02 13:39:32 +01:00
|
|
|
#!/bin/sh
|
|
|
|
|
2021-05-05 13:15:05 +01:00
|
|
|
cd /var/www/social || exit 65
|
|
|
|
|
|
|
|
yes yes | php bin/console doctrine:fixtures:load || exit 65
|
|
|
|
|
2021-07-20 15:02:41 +01:00
|
|
|
if runuser -u www-data -- vendor/bin/simple-phpunit -vvv --coverage-html .test_coverage_report; then
|
2021-05-02 13:39:32 +01:00
|
|
|
exit 64
|
|
|
|
else
|
|
|
|
exit 65
|
|
|
|
fi
|