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 14a612f commit aaeabfbCopy full SHA for aaeabfb
1 file changed
.travis.yml
@@ -65,10 +65,10 @@ addons:
65
- cscope
66
67
before_install:
68
- - pip install --user cpp-coveralls
+ - if [ "$COVERAGE" = "yes" ]; then pip install --user cpp-coveralls; fi
69
# needed for https support for coveralls
70
- # building cffi only works sith gcc, not with clang
71
- - CC=gcc pip install --user pyopenssl ndg-httpsclient pyasn1
+ # building cffi only works with gcc, not with clang
+ - if [ "$COVERAGE" = "yes" ]; then CC=gcc pip install --user pyopenssl ndg-httpsclient pyasn1; fi
72
# Lua is not installed on Travis OSX
73
- if [ "$TRAVIS_OS_NAME" = "osx" ]; then brew install lua; export LUA_PREFIX=/usr/local; fi
74
0 commit comments