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 670992d commit 5bc9aeaCopy full SHA for 5bc9aea
.travis.yml
@@ -7,5 +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
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
0 commit comments