firefly-iii/pu.sh
2015-03-28 06:59:43 +01:00

11 lines
171 B
Bash
Executable File

#!/bin/bash
# create DB if not exists
if [ ! -f tests/database/db.sqlite ]; then
touch tests/database/db.sqlite
php artisan migrate --seed
fi
phpunit --verbose