mirror of
https://github.com/elastic/logstash.git
synced 2025-04-24 22:57:16 -04:00
fix coverage paths for new structure by #4123
This commit is contained in:
parent
560dda251c
commit
2e80cd0cb7
1 changed files with 3 additions and 4 deletions
|
@ -5,20 +5,19 @@ module CoverageHelper
|
||||||
|
|
||||||
##
|
##
|
||||||
# Skip list used to avoid loading certain patterns within
|
# Skip list used to avoid loading certain patterns within
|
||||||
# the logstash directories, this patterns are excluded becuause
|
# the logstash directories, this patterns are excluded because
|
||||||
# of potential problems or because they are going to be loaded
|
# of potential problems or because they are going to be loaded
|
||||||
# in another way.
|
# in another way.
|
||||||
##
|
##
|
||||||
SKIP_LIST = Regexp.union([
|
SKIP_LIST = Regexp.union([
|
||||||
/^lib\/bootstrap\/rspec.rb$/,
|
/^lib\/bootstrap\/rspec.rb$/,
|
||||||
/^lib\/logstash\/util\/prctl.rb$/
|
/^logstash-core\/lib\/logstash\/util\/prctl.rb$/
|
||||||
])
|
])
|
||||||
|
|
||||||
def self.eager_load
|
def self.eager_load
|
||||||
Dir.glob("lib/**/*.rb") do |file|
|
Dir.glob("{logstash-core{/,-event/},}lib/**/*.rb") do |file|
|
||||||
next if file =~ SKIP_LIST
|
next if file =~ SKIP_LIST
|
||||||
require file
|
require file
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
end
|
end
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue