Skip to content

Commit

Permalink
ci: This PR is to trigger periodic CI testing
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Nov 12, 2023
1 parent 2085e21 commit 4492cc1
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tests/callback_plugins/dump_packages.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,10 @@ def __init__(self, *args, **kwargs):

def v2_runner_on_ok(self, result):
fields = result._task_fields
if fields["action"] == "package" and fields["args"].get("state") != "absent":
if (
fields["action"] in ["package", "dnf", "yum"]
and fields["args"].get("state") != "absent"
):
packages = set()
if "invocation" in result._result:
results = [result._result]
Expand Down

0 comments on commit 4492cc1

Please sign in to comment.