summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLamont Granquist <lamont@chef.io>2020-02-25 13:32:44 -0800
committerGitHub <noreply@github.com>2020-02-25 13:32:44 -0800
commita9cd3999e2358057108ff4613addccf5a6ab50f1 (patch)
treed02065b5ae499a1fde74a9a49d0acc2a8216e4f2
parent401ec3292a83acff904ab46db88875053ddffb9a (diff)
parent7537b362e9c1447d4572d19bd895f4fcc7522a87 (diff)
downloadchef-a9cd3999e2358057108ff4613addccf5a6ab50f1.tar.gz
Merge pull request #9391 from chef/lcg/fix-kitchen-tests
Remove reference to travis.org and pin ruby-prof
-rw-r--r--Gemfile3
-rw-r--r--Gemfile.lock5
-rw-r--r--kitchen-tests/cookbooks/end_to_end/recipes/default.rb1
3 files changed, 4 insertions, 5 deletions
diff --git a/Gemfile b/Gemfile
index 8643a7d415..1d99d59198 100644
--- a/Gemfile
+++ b/Gemfile
@@ -45,7 +45,8 @@ end
# Everything except AIX
group(:ruby_prof) do
- gem "ruby-prof"
+ # ruby-prof 1.3.0 does not compile on our centos6 builders/kitchen testers
+ gem "ruby-prof", "< 1.3.0"
end
# Everything except AIX and Windows
diff --git a/Gemfile.lock b/Gemfile.lock
index 5531e7393b..b4b0f538f9 100644
--- a/Gemfile.lock
+++ b/Gemfile.lock
@@ -336,8 +336,7 @@ GEM
rainbow (>= 2.2.2, < 4.0)
ruby-progressbar (~> 1.7)
unicode-display_width (>= 1.4.0, < 1.7)
- ruby-prof (1.3.0)
- ruby-prof (1.3.0-x64-mingw32)
+ ruby-prof (1.2.0)
ruby-progressbar (1.10.1)
ruby-shadow (2.5.0)
rubyntlm (0.6.2)
@@ -479,7 +478,7 @@ DEPENDENCIES
rspec-expectations (~> 3.5)
rspec-mocks (~> 3.5)
rspec_junit_formatter (~> 0.2.0)
- ruby-prof
+ ruby-prof (< 1.3.0)
ruby-shadow
simplecov
webmock
diff --git a/kitchen-tests/cookbooks/end_to_end/recipes/default.rb b/kitchen-tests/cookbooks/end_to_end/recipes/default.rb
index 6202efcc68..dc8b44cbf4 100644
--- a/kitchen-tests/cookbooks/end_to_end/recipes/default.rb
+++ b/kitchen-tests/cookbooks/end_to_end/recipes/default.rb
@@ -52,7 +52,6 @@ users_manage "sysadmin" do
end
ssh_known_hosts_entry "github.com"
-ssh_known_hosts_entry "travis.org"
sudo "sysadmins" do
group ["sysadmin", "%superadmin"]