Problem: cpp-coveralls can no longer be installed using Python2 pip.

Solution: Use pip3 instead of pip to install coveralls.
This commit is contained in:
Simon Giesecke
2021-05-14 14:33:52 +00:00
committed by Luca Boccassi
parent 17ac458468
commit 8e60667413

View File

@@ -25,14 +25,16 @@ matrix:
# Coverage, GCC 7, draft enabled, latest libzmq (default) # Coverage, GCC 7, draft enabled, latest libzmq (default)
- os: linux - os: linux
python: 3.6
before_install: before_install:
- pip install --user cpp-coveralls - pip3 install --user cpp-coveralls
addons: addons:
apt: apt:
sources: sources:
- ubuntu-toolchain-r-test - ubuntu-toolchain-r-test
packages: packages:
- g++-7 - g++-7
- python3-pip
env: env:
- MATRIX_EVAL="CC=gcc-7 && CXX=g++-7" ENABLE_DRAFTS=ON COVERAGE=ON - MATRIX_EVAL="CC=gcc-7 && CXX=g++-7" ENABLE_DRAFTS=ON COVERAGE=ON
after_success: after_success: