From bc1655d696a5f7cbf0ac2b5f7f9991365af616dc Mon Sep 17 00:00:00 2001 From: Johannes Buchner Date: Sun, 22 Sep 2024 18:20:04 +0200 Subject: [PATCH] [ci] try coverage builtin lcov support --- .github/workflows/testing.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index 74e5e4e..da48931 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -40,7 +40,7 @@ jobs: run: ln -sf /usr/lib/x86_64-linux-gnu/libstdc++.so.6 /usr/share/miniconda/envs/test/lib/libstdc++.so.6 - name: Install testing dependencies run: | - conda install -c conda-forge --file requirements-conda.txt --file requirements-linting-old.txt six packaging pytest coveralls coverage libstdcxx-ng toml coverage_lcov + conda install -c conda-forge --file requirements-conda.txt --file requirements-linting-old.txt six packaging pytest coveralls coverage libstdcxx-ng toml - name: Conda info run: | conda info @@ -55,7 +55,7 @@ jobs: - run: coverage run -m pytest . - name: Convert coverage output to lcov for coveralls run: | - coverage-lcov + coverage lcov # make paths relative sed -i s,$PWD/,,g lcov.info - name: prepare coveralls partial upload