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 02834b2 commit da5381dCopy full SHA for da5381d
.travis.yml
@@ -34,7 +34,9 @@ before_install:
34
- "if [[ $RUN_SNYK && $SNYK_TOKEN ]]; then sudo apt-get install -y nodejs; npm install -g snyk; fi"
35
install:
36
- pip install -r requirements.txt
37
- - pip install requests_mock pylint coveralls yapf
+ # We require yapf 0.28.0 to work around https://github.com/google/yapf/issues/781
38
+ # If that issue is resolved, we should remove the version constraint.
39
+ - pip install requests_mock pylint coveralls yapf==0.28.0
40
- "if [[ $RUN_SNYK && $SNYK_TOKEN ]]; then snyk test --org=maxmind; fi"
41
script:
42
- coverage run --source=geoip2 setup.py test
0 commit comments