Skip to content

Update coverage.yml #20

Update coverage.yml

Update coverage.yml #20

Workflow file for this run

name: Coverage
on:
pull_request:
paths-ignore:
- 'doc/**'
- '.ci/**'
- '*.rst'
push:
branches:
- main
- develop
- qtcitests
- beta/*
paths-ignore:
- 'doc/**'
- '.ci/**'
- '*.rst'
jobs:
coverage:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true
- uses: hendrikmuhs/ccache-action@v1.2
with:
key: ${{ github.job }}-${{ matrix.os }}-${{ matrix.python-version }}
create-symlink: true
- uses: rui314/setup-mold@v1
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: install pytest-qt dependencies
run: |
sudo apt install libxkbcommon-x11-0 libxcb-icccm4 libxcb-image0 libxcb-keysyms1 libxcb-randr0 libxcb-render-util0 libxcb-xinerama0 libxcb-xfixes0 x11-utils
/sbin/start-stop-daemon --start --quiet --pidfile /tmp/custom_xvfb_99.pid --make-pidfile --background --exec /usr/bin/Xvfb -- :99 -screen 0 1920x1200x24 -ac +extension GLX
- uses: astral-sh/setup-uv@v4
- run: uv pip install --system nox
- run: nox -s cov
- uses: AndreMiras/coveralls-python-action@develop