8 lines
193 B
Bash
Executable File
8 lines
193 B
Bash
Executable File
#!/bin/sh
|
|
|
|
cd /var/www/social || exit 1
|
|
|
|
yes yes | php bin/console doctrine:fixtures:load || exit 1
|
|
|
|
runuser -u www-data -- vendor/bin/simple-phpunit -vvv --coverage-html .test_coverage_report
|