17 lines
544 B
Bash
Executable File
17 lines
544 B
Bash
Executable File
#!/bin/sh
|
|
|
|
cd /var/www/social || exit 1
|
|
|
|
printf "Cleaning Redis cache: " && echo "FLUSHALL" | nc redis 6379
|
|
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
|
|
|
|
if [ "$#" -eq 0 ] || [ -z "$*" ]; then
|
|
vendor/bin/simple-phpunit -vvv --coverage-html .test_coverage_report
|
|
else
|
|
echo "Running with filter"
|
|
vendor/bin/simple-phpunit -vvv --coverage-html .test_coverage_report $*
|
|
fi
|