Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions .github/workflows/gating.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ jobs:
tests:

runs-on: ubuntu-latest
permissions:
id-token: write
container:
image: quay.io/exd-guild-compose/cts:latest

Expand All @@ -20,6 +22,7 @@ jobs:
sudo dnf update -y &&
sudo dnf install -y
findutils
git-core
make
python3-ldap
python3-mock
Expand All @@ -35,3 +38,9 @@ jobs:
run: tox -e docs
- name: tests
run: tox -e py3
- uses: codecov/codecov-action@v5
with:
use_oidc: true
flags: unit-tests
files: ./coverage.xml
fail_ci_if_error: false
1 change: 1 addition & 0 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ commands =
-W "ignore:inspect.getargspec:DeprecationWarning" \
-W "ignore:This method will be removed in future versions. Use 'parser.read_file()':DeprecationWarning" \
-W "ignore:Use .persist_selectable:DeprecationWarning" \
--cov-report=xml \
{posargs}
sitepackages = True

Expand Down
Loading