Skip to content

Commit da71c5f

Browse files
committed
travis: only install coveralls for Python 2.7
1 parent 609ef46 commit da71c5f

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

.travis.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,10 @@ jobs:
1919
dist: xenial # required for "3.7"
2020
sudo: true # required for "3.7"
2121
install:
22-
- pip install coveralls
22+
- |
23+
if [ "$TRAVIS_PYTHON_VERSION" = "2.7" ]; then
24+
pip install coveralls
25+
fi
2326
- pip install protobuf
2427
script:
2528
- make -C tools/python test

0 commit comments

Comments
 (0)