2021-09-09 08:40:34 +09:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
cd /var/www/social || exit 1
|
|
|
|
|
|
|
|
yes yes | php bin/console doctrine:fixtures:load || exit 1
|
|
|
|
|
2021-09-13 21:52:44 +09:00
|
|
|
runuser -u www-data -- vendor/bin/simple-phpunit --ansi -vvv --coverage-html .test_coverage_report
|