mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-12-01 04:59:25 -06:00
13 lines
302 B
Bash
Executable File
13 lines
302 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
|
|
|
|
return 0
|