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 5bb6996 commit 6e81898Copy full SHA for 6e81898
.travis.yml
@@ -16,14 +16,17 @@ before_install:
16
- sudo make install
17
- sudo ldconfig
18
- cd ..
19
- - pip install pylint
+ - pip install pylint coveralls
20
- if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then pip install unittest2; fi
21
22
script:
23
- CFLAGS="-Werror -Wall -Wextra" python setup.py test
24
- - MAXMINDDB_PURE_PYTHON=1 python setup.py test
+ - MAXMINDDB_PURE_PYTHON=1 coverage run --source=maxminddb setup.py test
25
- if [[ $TRAVIS_PYTHON_VERSION == '2.7' ]]; then pylint --rcfile .pylintrc maxminddb/*.py; fi
26
27
+after_success:
28
+ - coveralls
29
+
30
notifications:
31
email:
32
recipients:
0 commit comments