Files
firefly-iii/pu.sh

11 lines
171 B
Bash
Raw Normal View History

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