mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-11-28 03:34:32 -06:00
14 lines
169 B
Bash
Executable File
14 lines
169 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# backup .env file.
|
|
cp .env .env.backup
|
|
|
|
# set testing environment
|
|
cp .env.testing .env
|
|
|
|
# test!
|
|
phpunit --verbose
|
|
|
|
# restore .env file
|
|
mv .env.backup .env
|