summaryrefslogtreecommitdiff
path: root/.github/workflows/msys2.yml
diff options
context:
space:
mode:
authorJussi Pakkanen <jussi.pakkanen@mailbox.org>2025-06-17 19:27:19 +0300
committerJussi Pakkanen <jussi.pakkanen@mailbox.org>2025-06-18 17:22:04 +0300
commit7f908d909ea6874af0512e2258777f5cd42be790 (patch)
tree9a00e9f52969370bb59439a6a8b465669f2f2e7e /.github/workflows/msys2.yml
parentc3ea9753e3941789bdd4b8458a9912f407a5f9de (diff)
downloadmeson-7f908d909ea6874af0512e2258777f5cd42be790.tar.gz
Remove coverage measurement.
Diffstat (limited to '.github/workflows/msys2.yml')
-rw-r--r--.github/workflows/msys2.yml15
1 files changed, 2 insertions, 13 deletions
diff --git a/.github/workflows/msys2.yml b/.github/workflows/msys2.yml
index d1c2fa2b6..b926d1898 100644
--- a/.github/workflows/msys2.yml
+++ b/.github/workflows/msys2.yml
@@ -90,7 +90,7 @@ jobs:
- name: Install dependencies
run: |
- python3 -m pip --disable-pip-version-check install gcovr pefile pytest pytest-subtests pytest-xdist coverage
+ python3 -m pip --disable-pip-version-check install gcovr pefile pytest pytest-subtests pytest-xdist
- name: Install pypy3 on x86_64
run: |
@@ -125,20 +125,9 @@ jobs:
pacman --noconfirm --needed -S mingw-w64-${{ matrix.MSYS2_ARCH }}-${{ matrix.MSYS2_CURSES }}
fi
- MSYSTEM= python3 ./tools/run_with_cov.py run_tests.py --backend=ninja
+ MSYSTEM= python3 ./run_tests.py --backend=ninja
- uses: actions/upload-artifact@v4
with:
name: ${{ matrix.NAME }}
path: meson-test-run.*
-
- - name: Aggregate coverage reports
- run: ./ci/combine_cov.sh
-
- - name: Upload coverage report
- uses: codecov/codecov-action@v3
- with:
- files: .coverage/coverage.xml
- name: "${{ matrix.NAME }}"
- fail_ci_if_error: false
- verbose: true