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 4311d1d commit 3807107Copy full SHA for 3807107
.travis.yml
@@ -62,7 +62,7 @@ matrix:
62
sudo: false
63
64
before_install:
65
- - pip install --trusted-host pypi.python.org --trusted-host files.pythonhosted.org --user cpp-coveralls
+ - if [ "$TRAVIS_OS_NAME" = "linux" ]; then pip install --user cpp-coveralls; fi
66
67
# Build and check this project
68
script:
@@ -71,4 +71,4 @@ script:
71
- ./ci_build.sh
72
73
after_success:
74
- - coveralls --root . -E ".*external.*" -E ".*CMakeFiles.*" -E ".*tests/" -E ".*demo/" -E ".*libzmq/"
+ - if [ "$TRAVIS_OS_NAME" = "linux" ]; then coveralls --root . -E ".*external.*" -E ".*CMakeFiles.*" -E ".*tests/" -E ".*demo/" -E ".*libzmq/"; fi
0 commit comments