diff options
author | Tim Smith <tsmith@chef.io> | 2021-04-23 13:33:02 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-23 13:33:02 -0700 |
commit | 202fd46e185eef73bd72f9461ef9e7d487333da3 (patch) | |
tree | ea30cb3a81b7540ead6133a00a2ba00bf27fbd06 | |
parent | c97e67727da3c29c77e75b4c88ebf652659a11d2 (diff) | |
parent | 44359d00585d438b7b68fe8553581db4d4783803 (diff) | |
download | chef-202fd46e185eef73bd72f9461ef9e7d487333da3.tar.gz |
Merge pull request #11444 from chef/mp/disable-dnf-functional-tests
Signed-off-by: Tim Smith <tsmith@chef.io>
-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 |