We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents bb5755f + 10adbe4 commit ebaaf86Copy full SHA for ebaaf86
spec/spec_helper_acceptance.rb
@@ -4,16 +4,14 @@
4
require 'beaker/module_install_helper'
5
6
run_puppet_install_helper unless ENV['BEAKER_provision'] == 'no'
7
-install_ca_certs unless ENV['PUPPET_INSTALL_TYPE'] =~ %r{pe}i
8
-install_module_on(hosts)
9
-install_module_dependencies_on(hosts)
10
11
RSpec.configure do |c|
12
# Readable test descriptions
13
c.formatter = :documentation
14
- hosts.each do |host|
15
- if host[:platform] =~ %r{el-7-x86_64} && host[:hypervisor] =~ %r{docker}
16
- on(host, "sed -i '/nodocs/d' /etc/yum.conf")
17
- end
+
+ # Configure all nodes in nodeset
+ c.before :suite do
+ install_module
+ install_module_dependencies
18
end
19
0 commit comments