firefly-iii/pu.sh

11 lines
171 B
Bash
Raw Normal View History

2015-03-28 00:48:38 -05:00
#!/bin/bash
# create DB if not exists
2015-03-28 00:51:54 -05:00
if [ ! -f tests/database/db.sqlite ]; then
touch tests/database/db.sqlite
php artisan migrate --seed
fi
phpunit --verbose