Skip to content

Commit 06d19f9

Browse files
ci: This PR is to trigger periodic CI testing
1 parent 5042bf7 commit 06d19f9

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

tests/callback_plugins/dump_packages.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,10 @@ def __init__(self, *args, **kwargs):
4040

4141
def v2_runner_on_ok(self, result):
4242
fields = result._task_fields
43-
if fields["action"] == "package" and fields["args"].get("state") != "absent":
43+
if (
44+
fields["action"] in ["package", "dnf", "yum"]
45+
and fields["args"].get("state") != "absent"
46+
):
4447
packages = set()
4548
if "invocation" in result._result:
4649
results = [result._result]

0 commit comments

Comments
 (0)