diff options
-rw-r--r-- | .travis.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 655cf856..4227b29f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -31,7 +31,7 @@ env: before_install: 'if [ $RUN_LINTS = "true" ]; then pip install pre-commit; fi' # TODO: consider installing optional dependencies to run skipped tests -install: 'if [[ $RUN_LINTS -ne "true" ]]; then pip install -e .; fi' +install: 'if [ $RUN_LINTS != "true" ]; then pip install -e .; fi' script: 'if [ $RUN_LINTS = "true" ]; then pre-commit run --all-files; else nosetests; fi' deploy: |