mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-12-01 02:21:45 +00:00
11 lines
255 B
Bash
11 lines
255 B
Bash
|
|
#!/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
|