Merge pull request #3926 from inspec/cw/disable-func-test-warnings

Disable warnings for functional tests
This commit is contained in:
Clinton Wolfe 2019-04-09 15:50:12 -04:00 committed by GitHub
commit 6ca37e6b79
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -76,7 +76,7 @@ namespace :test do
'test/functional/**/*_test.rb',
'lib/plugins/inspec-*/test/functional/**/*_test.rb',
])
t.warning = true
t.warning = false
t.verbose = true
t.ruby_opts = ['--dev'] if defined?(JRUBY_VERSION)
end
@ -93,7 +93,7 @@ namespace :test do
t.libs << 'test'
t.test_files = files
t.warning = true
t.warning = false
t.verbose = true
t.ruby_opts = ['--dev'] if defined?(JRUBY_VERSION)
end