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.
2 parents 7d0f7bc + ec45ba2 commit b3b7b93Copy full SHA for b3b7b93
.travis.yml
@@ -15,7 +15,11 @@ install:
15
- if [[ "$TRAVIS_PYTHON_VERSION" == "3.2" ]]; then travis_retry pip install coverage==3.7.1; fi
16
- if [[ "$TRAVIS_PYTHON_VERSION" != "3.2" ]]; then travis_retry pip install coverage; fi
17
- python setup.py install
18
+- pip install codecov
19
script:
20
+- if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then coverage run -m unittest2 discover; else coverage run -m unittest discover; fi
21
+after_script:
22
+- codecov
23
# Run pycodestyle
24
- pycodestyle
25
- if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then unit2 discover; else python -m unittest discover; fi
0 commit comments