1
Fork 0
This repository has been archived on 2023-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
dotfile-automator/scripts/runtests

16 lines
244 B
Plaintext
Raw Permalink Normal View History

2015-11-27 18:19:04 +00:00
#!/usr/bin/env bash
set -e
export PATH=env/bin:${PATH}
2015-12-06 14:20:55 +00:00
flake8 project --ignore=E128,E501,E401
2015-11-27 18:19:04 +00:00
echo ">> Flake8 Tests Completed"
2015-12-03 22:46:26 +00:00
if [ "$1" == "CI" ]; then
echo ">> Installing CLI..."
bash scripts/build
fi
echo ">> All Tests Passed!"