2016-09-27 11:48:27 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
make check-coverage-libicu
|
2017-06-16 16:51:33 +02:00
|
|
|
pip install --upgrade pip
|
2017-01-04 20:25:38 +01:00
|
|
|
pip install --user urllib3[secure] cpp-coveralls
|
|
|
|
|
|
|
|
# Work around https://github.com/eddyxu/cpp-coveralls/issues/108 by manually
|
|
|
|
# installing the pyOpenSSL module and injecting it into urllib3 as per
|
|
|
|
# https://urllib3.readthedocs.io/en/latest/user-guide.html#ssl-py2
|
2017-06-16 16:51:33 +02:00
|
|
|
#sed -i -e '/^import sys$/a import urllib3.contrib.pyopenssl\nurllib3.contrib.pyopenssl.inject_into_urllib3()' `which coveralls`
|
2017-01-04 20:25:38 +01:00
|
|
|
|
2017-01-04 17:19:05 +01:00
|
|
|
coveralls -t d9uGTP4NSD092kh2b85aDSsEDxatcYC6F --include src/
|