diff options
-rw-r--r-- | spec/functional/resource/dnf_package_spec.rb | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/spec/functional/resource/dnf_package_spec.rb b/spec/functional/resource/dnf_package_spec.rb index e0a69da4f9..0aa88b7a23 100644 --- a/spec/functional/resource/dnf_package_spec.rb +++ b/spec/functional/resource/dnf_package_spec.rb @@ -19,7 +19,10 @@ require "spec_helper" require "chef/mixin/shell_out" # run this test only for following platforms. -exclude_test = !(%w{rhel fedora amazon}.include?(ohai[:platform_family]) && File.exist?("/usr/bin/dnf")) +# 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")) describe Chef::Resource::DnfPackage, :requires_root, external: exclude_test do include Chef::Mixin::ShellOut |