File 076-ci-Install-acl-to-get-more-code-coverage.patch of Package virt-manager
Subject: ci: Install `acl` to get more code coverage
From: Cole Robinson crobinso@redhat.com Tue Feb 24 11:56:14 2026 -0500
Date: Tue Feb 24 12:58:57 2026 -0500:
Git: 09ecf1cfd2d73980db6b133e8f86ba432eab60e1
And run `coverage report -m` so we have a simple coverage
report in the logs too
Signed-off-by: Cole Robinson <crobinso@redhat.com>
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 197326545..5f62ed801 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -22,7 +22,8 @@ jobs:
rpm-build \
dnf-plugins-core \
glibc-langpack-en \
- python3-pytest python3-pytest-cov
+ python3-pytest python3-pytest-cov \
+ acl
- uses: actions/checkout@v6
@@ -52,6 +53,7 @@ jobs:
- name: Run test suite and generate coverage report
run: |
pytest --cov --cov-report=xml
+ coverage report -m
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v5