|
|
@@ -3,8 +3,11 @@ |
|
|
|
cd /var/www/social || exit 1 |
|
|
|
|
|
|
|
printf "Cleaning Redis cache: " && echo "FLUSHALL" | nc redis 6379 |
|
|
|
yes yes | php bin/console doctrine:fixtures:load || exit 1 |
|
|
|
php bin/console app:populate_initial_values # since loading fixtures purges the DB |
|
|
|
bin/console doctrine:database:drop --force || exit 1 |
|
|
|
bin/console doctrine:database:create || exit 1 |
|
|
|
bin/console doctrine:schema:update --force || exit 1 |
|
|
|
yes yes | bin/console doctrine:fixtures:load || exit 1 |
|
|
|
bin/console app:populate_initial_values || exit 1 |
|
|
|
|
|
|
|
if [ "$#" -eq 0 ] || [ -z "$*" ]; then |
|
|
|
vendor/bin/simple-phpunit -vvv --coverage-html .test_coverage_report |
|
|
|