Commit 42eb425d authored by Jason Madden's avatar Jason Madden

Only do the setup.py step if we're going to use it, not if we're skipping this part of the matrix.

parent 9e6cd096
......@@ -16,9 +16,8 @@ install:
# Then start installing our deps. Note that use of --build-options / --global-options / --install-options
# disables the cache.
- travis_retry pip install -U tox cython greenlet pep8 pyflakes
- travis_retry python setup.py develop
script:
- if [[ $TRAVIS_PYTHON_VERSION == '2.7' && $LINT == true ]]; then make travis_test_linters; elif [[ $LINT == false ]]; then make toxtest; fi
- if [[ $TRAVIS_PYTHON_VERSION == '2.7' && $LINT == true ]]; then python setup.py develop && make travis_test_linters; elif [[ $LINT == false ]]; then python setup.py develop && make toxtest; fi
notifications:
email: false
cache: pip
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment