mirror of
https://github.com/inspec/inspec
synced 2024-11-10 07:04:15 +00:00
Merge pull request #3926 from inspec/cw/disable-func-test-warnings
Disable warnings for functional tests
This commit is contained in:
commit
6ca37e6b79
1 changed files with 2 additions and 2 deletions
4
Rakefile
4
Rakefile
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue