1
Fork 0

Split local and CI testing

This commit is contained in:
Jake Howard 2015-12-03 22:46:26 +00:00
parent f3dfedeb2a
commit 335d387136
2 changed files with 7 additions and 3 deletions

View File

@ -8,4 +8,4 @@ dependencies:
test:
override:
- scripts/runtests
- scripts/runtests CI

View File

@ -7,5 +7,9 @@ export PATH=env/bin:${PATH}
flake8 project --ignore=E128,E501
echo ">> Flake8 Tests Completed"
echo ">> Installing CLI..."
bash scripts/build
if [ "$1" == "CI" ]; then
echo ">> Installing CLI..."
bash scripts/build
fi
echo ">> All Tests Passed!"