Skip to content

Commit aaeabfb

Browse files
committed
Only install coveralls when used.
1 parent 14a612f commit aaeabfb

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.travis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,10 +65,10 @@ addons:
6565
- cscope
6666

6767
before_install:
68-
- pip install --user cpp-coveralls
68+
- if [ "$COVERAGE" = "yes" ]; then pip install --user cpp-coveralls; fi
6969
# 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
70+
# building cffi only works with gcc, not with clang
71+
- if [ "$COVERAGE" = "yes" ]; then CC=gcc pip install --user pyopenssl ndg-httpsclient pyasn1; fi
7272
# Lua is not installed on Travis OSX
7373
- if [ "$TRAVIS_OS_NAME" = "osx" ]; then brew install lua; export LUA_PREFIX=/usr/local; fi
7474

0 commit comments

Comments
 (0)