mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-11-28 03:34:32 -06:00
11 lines
171 B
Bash
Executable File
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
|