firefly-iii/pu.sh

14 lines
169 B
Bash
Raw Normal View History

2015-03-28 00:48:38 -05:00
#!/bin/bash
2015-04-03 00:44:44 -05:00
# backup .env file.
cp .env .env.backup
2015-03-28 00:51:54 -05:00
2015-04-03 00:44:44 -05:00
# set testing environment
cp .env.testing .env
2015-03-28 00:51:54 -05:00
2015-04-03 00:44:44 -05:00
# test!
phpunit --verbose
2015-04-03 00:44:44 -05:00
# restore .env file
mv .env.backup .env