2017-12-06 20:08:20 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
set -x
|
|
|
|
set -o errexit -o nounset
|
|
|
|
|
2018-03-05 10:32:50 +01:00
|
|
|
if test x"$TRAVIS_REPO_SLUG" != x"harfbuzz/harfbuzz"; then exit; fi
|
|
|
|
|
2017-12-06 20:08:20 +01:00
|
|
|
pip install --user nose
|
|
|
|
pip install --user cpp-coveralls
|
|
|
|
export PATH=$HOME/.local/bin:$PATH
|
|
|
|
|
|
|
|
rm -f src/.libs/NONE.gcov
|
|
|
|
touch src/NONE
|
|
|
|
coveralls -e docs
|