mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-01-05 21:53:08 -06:00
25 lines
375 B
Bash
Executable File
25 lines
375 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# set testing environment
|
|
cp .env.testing .env
|
|
|
|
# set default phpunit.
|
|
cp phpunit.default.xml phpunit.xml
|
|
|
|
# delete test databases:
|
|
if [ -f storage/database/testing.db ]
|
|
then
|
|
rm storage/database/testing.db
|
|
fi
|
|
|
|
if [ -f storage/database/testing-copy.db ]
|
|
then
|
|
rm storage/database/testing-copy.db
|
|
fi
|
|
|
|
# test!
|
|
phpunit
|
|
|
|
# restore .env file
|
|
cp .env.local .env
|