# HG changeset patch # User Amine Sehili # Date 1730363080 -3600 # Node ID dde9d076e6ee39532bcf8d0d897310ef7103e640 # Parent 44dcd2c4d860e75f064e5102999842f812295bd8 Add codecov diff -r 44dcd2c4d860 -r dde9d076e6ee .github/workflows/ci.yml --- a/.github/workflows/ci.yml Thu Oct 31 09:06:39 2024 +0100 +++ b/.github/workflows/ci.yml Thu Oct 31 09:24:40 2024 +0100 @@ -29,11 +29,11 @@ - name: Install dependencies run: | sudo apt-get update --fix-missing - pip install numpy pytest pydub matplotlib + pip install pytest-cov pytest numpy pydub matplotlib - name: Install specific package for Python 3.13 only if: matrix.python-version == '3.13' run: pip install audioop-lts - name: Run tests - run: pytest -s -p no:warnings "tests" + run: pytest -s -p no:warnings --cov --cov-report=xml tests