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 ab1bbb4 commit 1c8e77aCopy full SHA for 1c8e77a
.travis.yml
@@ -7,10 +7,14 @@ python:
7
- "3.5"
8
- "nightly"
9
- "pypy"
10
+before_install:
11
+ - pip install codecov
12
install:
13
- if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then pip install unittest2; pip install -r requirements26.txt; fi
14
- "rm -rf dist/*"
15
- pip install -r requirements.txt
16
- python setup.py bdist_wheel
17
- pip install dist/*.whl
-script: cd tests/ && nosetests .
18
+script: cd tests/ && nosetests --with-coverage --cover-package jmespath .
19
+after_success:
20
+ - codecov
requirements.txt
@@ -2,3 +2,4 @@ nose==1.2.1
2
py==1.4.12
3
tox==1.4.2
4
wheel==0.24.0
5
+coverage==3.7.1
0 commit comments