Skip to content

Commit 7034a83

Browse files
committed
Tune travis config for coverage with gcc only.
1 parent a4ce25b commit 7034a83

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

.travis.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,8 @@ addons:
6666

6767
before_install:
6868
- pip install --user cpp-coveralls
69-
- pip install --user pyopenssl ndg-httpsclient pyasn1
69+
# building cffi only works sith gcc, not with clang
70+
- if [ "$CC" = "gcc" ]; then pip install --user pyopenssl ndg-httpsclient pyasn1; fi
7071
# Lua is not installed on Travis OSX
7172
- if [ "$TRAVIS_OS_NAME" = "osx" ]; then brew install lua; export LUA_PREFIX=/usr/local; fi
7273

0 commit comments

Comments
 (0)