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 8564890 commit be548bfCopy full SHA for be548bf
.travis.yml
@@ -126,7 +126,11 @@ matrix:
126
- COMPILER=g++-6
127
- CXXFLAGS="-O0 --coverage"
128
before_script:
129
- - pip install --user cpp-coveralls
+ - pip install --user urllib3[secure] cpp-coveralls
130
+ # Work around https://github.com/eddyxu/cpp-coveralls/issues/108 by manually
131
+ # installing the pyOpenSSL module and injecting it into urllib3 as per
132
+ # https://urllib3.readthedocs.io/en/latest/user-guide.html#ssl-py2
133
+ - sed -i -e '/^import sys$/a import urllib3.contrib.pyopenssl\nurllib3.contrib.pyopenssl.inject_into_urllib3()' $(which coveralls)
134
after_success:
135
- coveralls --gcov gcov-6 --gcov-options '\-lp' --exclude src
136
0 commit comments