summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorSviatoslav Sydorenko <wk@sydorenko.org.ua>2016-09-08 15:33:37 +0300
committerSviatoslav Sydorenko <wk@sydorenko.org.ua>2016-09-08 15:33:37 +0300
commitd002138a3f6ecab5ad4542ef115dd14e7b6fd79c (patch)
tree60b9d3cca36c33bbce97e1a6f2662db14c0177b8 /.travis.yml
parent9623cfafdc4e42234fe013aa582c6e496b54fd42 (diff)
downloadcherrypy-git-d002138a3f6ecab5ad4542ef115dd14e7b6fd79c.tar.gz
Fix if statement in travis config
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml2
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: