fix: 1.29 Do not try to test this branch on Fedora rawhide #610
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: pytest | |
on: | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
pytest: | |
name: "pytest" | |
permissions: | |
issues: write | |
pull-requests: write | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- name: "CentOS Stream 9" | |
image: "quay.io/centos/centos:stream9" | |
pytest_args: '' | |
runs-on: ubuntu-latest | |
container: | |
image: ${{ matrix.image }} | |
volumes: | |
- /tmp:/tmp | |
steps: | |
- name: "Checkout repository" | |
uses: actions/checkout@v4 | |
- name: "Run container-pre-test.sh" | |
run: | | |
bash scripts/container-pre-test.sh | |
- name: "Run pytest" | |
env: | |
PYTEST_ADDOPTS: | |
"--color=yes --code-highlight=yes --showlocals | |
--cov 'src/' --cov-report 'term:skip-covered' | |
--cov-report 'xml:/tmp/coverage.xml' --junitxml '/tmp/pytest.xml'" | |
run: | | |
python3 -m pytest ${{ matrix.pytest_args }} | |
- name: "Publish coverage" | |
uses: MishaKav/pytest-coverage-comment@main | |
if: | | |
github.event.pull_request.head.repo.full_name == github.repository | |
&& matrix.name == 'Fedora latest' | |
with: | |
title: "Coverage (computed on ${{ matrix.name }})" | |
report-only-changed-files: true | |
pytest-xml-coverage-path: /tmp/coverage.xml | |
junitxml-path: /tmp/pytest.xml |