summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLamont Granquist <lamont@scriptkiddie.org>2021-04-30 16:09:30 -0700
committerLamont Granquist <lamont@scriptkiddie.org>2021-04-30 16:09:30 -0700
commitada97957cfc24f081fa658900b8fc561d59e6d8e (patch)
treee4fb1bb48c750f51abc68484354961bc747da843
parent7dab8719216d9ed112bc8905202644df9b521f5f (diff)
downloadchef-ada97957cfc24f081fa658900b8fc561d59e6d8e.tar.gz
add fedora back
Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
-rw-r--r--spec/functional/resource/dnf_package_spec.rb5
1 files changed, 1 insertions, 4 deletions
diff --git a/spec/functional/resource/dnf_package_spec.rb b/spec/functional/resource/dnf_package_spec.rb
index 97256472d6..3f1b83c747 100644
--- a/spec/functional/resource/dnf_package_spec.rb
+++ b/spec/functional/resource/dnf_package_spec.rb
@@ -19,10 +19,7 @@ require "spec_helper"
require "chef/mixin/shell_out"
# run this test only for following platforms.
-# TODO: 2021-04-23 we removed 'fedora' from this list because our fedora functional tests
-# are consistently timing out in BuildKite. Once we've addressed this (see issue chef/11414)
-# we will re-add the platform.
-exclude_test = !(%w{rhel amazon}.include?(ohai[:platform_family]) && File.exist?("/usr/bin/dnf"))
+exclude_test = !(%w{rhel amazon fedora}.include?(ohai[:platform_family]) && File.exist?("/usr/bin/dnf"))
describe Chef::Resource::DnfPackage, :requires_root, external: exclude_test do
include Chef::Mixin::ShellOut