Skip to content
Snippets Groups Projects
Commit 7a00580e authored by Antonio Terceiro's avatar Antonio Terceiro
Browse files

debian/ruby-tests.rake: exclude broken tests

Closes: #1005442, #1006985
parent 63faab2b
No related merge requests found
require 'gem2deb/rake/spectask'
EXCLUDE = [
'spec/client_spec.rb',
'spec/dns_spec.rb',
'spec/http_proxy_spec.rb',
'spec/middleware/oauth2_spec.rb',
'spec/middleware_spec.rb',
'spec/multi_spec.rb',
'spec/redirect_spec.rb',
]
Gem2Deb::Rake::RSpecTask.new do |spec|
spec.pattern = './spec/**/*_spec.rb'
spec.pattern = Dir['spec/**/*_spec.rb'] - EXCLUDE
end
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment