mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-11-26 19:00:22 -06:00
13 lines
300 B
Bash
Executable File
13 lines
300 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# enable test .env file.
|
|
cp .ci/.env.ci ../.env
|
|
|
|
# download test database
|
|
wget --quiet https://raw.githubusercontent.com/firefly-iii/test-data/main/test_db.sqlite -o storage/database/test_db.sqlite
|
|
|
|
# run phpunit
|
|
./vendor/bin/phpunit --configuration phpunit.coverage.xml
|
|
|
|
exit 0
|