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 a1a6c6c commit 5157fa5Copy full SHA for 5157fa5
.travis.yml
@@ -29,11 +29,12 @@ install:
29
- pip install requests_mock coveralls
30
- |
31
if [[ $RUN_LINTER ]]; then
32
- pip install --upgrade pylint black
+ pip install --upgrade pylint black mypy
33
fi
34
- "if [[ $RUN_SNYK && $SNYK_TOKEN ]]; then snyk test --org=maxmind; fi"
35
script:
36
- coverage run --source=geoip2 setup.py test
37
+ - "if [[ $RUN_LINTER ]]; then mypy geoip2 tests; fi"
38
- "if [[ $RUN_LINTER ]]; then ./.travis-pylint.sh; fi"
39
- "if [[ $RUN_LINTER ]]; then ./.travis-black.sh; fi"
40
after_success:
0 commit comments