diff --git a/circle.yml b/circle.yml index 484e36c..d69eb0e 100644 --- a/circle.yml +++ b/circle.yml @@ -8,4 +8,4 @@ dependencies: test: override: - - scripts/runtests + - scripts/runtests CI diff --git a/scripts/runtests b/scripts/runtests index 119b65d..1553f31 100644 --- a/scripts/runtests +++ b/scripts/runtests @@ -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!"