Skip to content

build(deps): bump pytest from 8.3.3 to 8.3.4 (#803) #1781

build(deps): bump pytest from 8.3.3 to 8.3.4 (#803)

build(deps): bump pytest from 8.3.3 to 8.3.4 (#803) #1781

Workflow file for this run

name: Coverage
on:
push:
branches-ignore:
- "dependabot/**"
- "pre-commit-ci-update-config"
pull_request:
concurrency:
group: coverage-${{ github.ref }}
cancel-in-progress: true
jobs:
build_sdist:
name: Coverage
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- uses: wntrblm/[email protected]
with:
python-versions: "3.13, pypy3.10"
- name: Install Intel SDE
run: |
curl -fsSLo ${HOME}/sde.tar.xz https://downloadmirror.intel.com/813591/sde-external-9.33.0-2024-01-07-lin.tar.xz
mkdir ${HOME}/sde
tar -C ${HOME}/sde --strip-components 1 -xf ${HOME}/sde.tar.xz
echo "PATH=${HOME}/sde:${PATH}" >> $GITHUB_ENV
- name: Run coverage tests
run: nox -s coverage -- --with-sde
- name: Upload coverage to codecov
uses: codecov/codecov-action@v5
with:
files: coverage-native.xml,coverage-python.xml
token: ${{ secrets.CODECOV_TOKEN }}