summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.travis.yml10
1 files changed, 3 insertions, 7 deletions
diff --git a/.travis.yml b/.travis.yml
index a2b0b63..0d1a49c 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -27,13 +27,9 @@ install:
- make tox-listenvs
script:
- - |
- if [[ "$TOXENV" != "" ]]; then
- - make tox
- - make lint
- else
- - make pytest
- fi
+ - if [ "$TOXENV" == "" ]; then make pytest; fi
+ - if [ "$TOXENV" != "" ]; then make tox; fi
+ - if [ "$TOXENV" != "" ]; then make lint; fi
after_success:
- coveralls