We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5bc9aea commit 36e4450Copy full SHA for 36e4450
.travis.yml
@@ -7,9 +7,9 @@ env:
7
sudo: false
8
install:
9
- travis_retry pip install tox
10
- - if [[ $TRAVIS_PYTHON_VERSION == '2.7' ]]; then pip install -r requirements-dev.txt; fi
+ - if [[ $TOXENV == 'py27' ]]; then pip install -r requirements-dev.txt; pip install -e .; fi
11
script:
12
- tox
13
# We only need to run the lint/flake8 checks on one version of python
14
# So I've arbitrarily chosen python2.7.
15
- - if [[ $TRAVIS_PYTHON_VERSION == '2.7' ]]; then make check; fi
+ - if [[ $TOXENV == 'py27' ]]; then make check; fi
0 commit comments