-
-
Notifications
You must be signed in to change notification settings - Fork 77
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
modulesync 7.0.0 and modernization #347
Conversation
@trevor-vaughan any guesses what I need to do to make |
@jcpunk That's a underlying library dependency conflict unfortunately. Going to have to raise the upper bound in beaker-helpers itself and make sure it doesn't break anything. |
I'm guessing simp/rubygem-simp-beaker-helpers#212 will fix me? |
That's my hope. simp-beaker-helpers 1.32.0 should be available in a few minutes. |
ac1871f
to
5c85c23
Compare
I think we're close, but I don't understand the remaining rspec errors.... |
You can fix the diff --git a/spec/unit/facter/firewalld_version_spec.rb b/spec/unit/facter/firewalld_version_spec.rb
index bb943e1..4deea93 100644
--- a/spec/unit/facter/firewalld_version_spec.rb
+++ b/spec/unit/facter/firewalld_version_spec.rb
@@ -9,7 +9,7 @@ describe 'firewalld_version' do
Process.stubs(:uid).returns(0)
Facter::Core::Execution.stubs(:exec).with('uname -s').returns('Linux')
Facter::Util::Resolution.stubs(:which).with('firewall-offline-cmd').returns('/usr/bin/firewall-offline-cmd')
- Facter::Core::Execution.stubs(:execute).with('/usr/bin/firewall-offline-cmd --version', on_fail: :failed).returns(firewalld_version)
+ Facter::Core::Execution.stubs(:execute).with('/usr/bin/firewall-offline-cmd --version', on_fail: :failed).returns(firewalld_version.dup)
end
let(:python_args) do |
That seems to have gotten us further! Thanks! Any idea why it isn't running the icmp-block bits in the test? I'd swear the test is configured to say it is not enabled and for puppet to enable it... |
I'm having no luck figuring that one out so far. |
For the acceptance tests, I'm thinking it might make sense to switch to the default vox ones, but my attempt to do that was unsuccessful... |
1c0d6db
to
c7817cb
Compare
I fought with this some more today, I feel like we're close but I'm very puzzled by the current errors... |
55273ec
to
36e62ca
Compare
349df40
to
298b733
Compare
Pull Request (PR) description
Attempt at module sync to 7.0.0
This Pull Request (PR) fixes the following issues