summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRick Elrod <rick@elrod.me>2020-10-19 11:04:32 -0500
committerGitHub <noreply@github.com>2020-10-19 11:04:32 -0500
commit2c5e4b5a889248333689f04b650bdca64f2547b7 (patch)
tree1cfecde9cf3721112d4445f982ec1f32df40b896
parent2e0eb330a194a195dc10089776325dab2e65f305 (diff)
downloadansible-2c5e4b5a889248333689f04b650bdca64f2547b7.tar.gz
[tests/dnf] work around dnf packaging issue (#72249) (#72251)
Change: - In this test we end up upgrading dnf (and python3-dnf) so that we can test its new logging behavior. However, the latest Fedora 32 dnf had a packaging issue which caused it to not pull in the latest python3-libdnf. This is fixed, but not synced out to mirrors yet. Fixing it in this test will get CI passing again in the meanwhile. Test Plan: - CI Tickets: - https://bugzilla.redhat.com/show_bug.cgi?id=1887502 Signed-off-by: Rick Elrod <rick@elrod.me> (cherry picked from commit 9ddb1d76afd8edd9c363d2f12a2c9c7c2d4372f7)
-rw-r--r--test/integration/targets/dnf/tasks/logging.yml4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/integration/targets/dnf/tasks/logging.yml b/test/integration/targets/dnf/tasks/logging.yml
index ad4df72d6d..4cbeaa616d 100644
--- a/test/integration/targets/dnf/tasks/logging.yml
+++ b/test/integration/targets/dnf/tasks/logging.yml
@@ -3,7 +3,9 @@
# Note: https://bugzilla.redhat.com/show_bug.cgi?id=1788212
- name: Install latest version python3-dnf
dnf:
- name: python3-dnf
+ name:
+ - python3-dnf
+ - python3-libdnf # https://bugzilla.redhat.com/show_bug.cgi?id=1887502
state: latest
register: dnf_result