-
Notifications
You must be signed in to change notification settings - Fork 21
(FM-5062) Add testmode switcher to sqlserver module #223
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
@@ -60,7 +60,9 @@ group :system_tests do | |||
gem "beaker-pe", :require => false | |||
gem "beaker-rspec", *location_for(ENV['BEAKER_RSPEC_VERSION']) | |||
gem "beaker-hostgenerator", *location_for(ENV['BEAKER_HOSTGENERATOR_VERSION']) | |||
gem "beaker-abs", *location_for(ENV['BEAKER_ABS_VERSION'] || '~> 0.1') | |||
gem "beaker-abs", *location_for(ENV['BEAKER_ABS_VERSION'] || '~> 0.1') | |||
gem "beaker-testmode_switcher", '<= 0.2.0', :require => false |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These changes will need to go into sync.yaml otherwise the next modsync will overwrite them
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done
expect(r.stderr).not_to match(/Error/i) | ||
end | ||
end | ||
|
||
it "Validate new login and database actualy created" do | ||
binding.pry |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Whoopsy
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I thought I fixed this...
spec/spec_helper_acceptance.rb
Outdated
@@ -61,6 +64,7 @@ | |||
# Install test helper modules onto agent. | |||
%w(puppetlabs-mount_iso cyberious-pget).each do |dep| | |||
on(agent, puppet("module install #{dep}")) | |||
on(master, puppet("module install #{dep}")) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These dependencies are agent only, not master. Is that an issue here?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Investigating this...
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM once the SQL Server pipelines are ready for testmode switcher.
No description provided.