Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ gem "paint", "~> 2.2"
group(:test) do
gem "beaker-hostgenerator"
gem "mocha", '~> 1.4.0'
gem "rack-test", '~> 1.0'
gem "rack-test", '>= 1', '< 3'
gem 'rspec-github', require: false
end

Expand Down
2 changes: 1 addition & 1 deletion spec/integration/apply_error_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
with_tempfile_containing('site', 'load_error()', '.pp') do |tempfile|
run_cli(%W[apply #{tempfile.path} --run-as root --sudo-password #{password}] + config_flags)
logs = @log_output.readlines
expect(logs).to include(/`require': cannot load such file -- fake \(LoadError\)/)
expect(logs).to include(/cannot load such file -- fake \(LoadError\)/)
expect(logs).to include(/Something's gone terribly wrong! STDERR is logged/)
end
end
Expand All @@ -53,7 +53,7 @@
let(:password) { conn_info('winrm')[:password] }
let(:tflags) { %w[--no-ssl --no-ssl-verify] }

it 'prints a helpful error if Puppet is not present', :winrm_agentless, :winrm do

Check warning on line 56 in spec/integration/apply_error_spec.rb

View workflow job for this annotation

GitHub Actions / Agentless (3.2)

errors gracefully attempting to apply a manifest block over winrm prints a helpful error if Puppet is not present Skipped: Skipping this test as it fails with a connection error until #3001 is fixed
skip "Skipping this test as it fails with a connection error until #3001 is fixed"
result = run_cli_json(%w[plan run basic::class] + config_flags)
error = result['details']['result_set'][0]['value']['_error']
Expand Down
Loading