Skip to content

Commit

Permalink
Configre filter to exclude vendor and test
Browse files Browse the repository at this point in the history
  • Loading branch information
white-gecko committed Mar 13, 2019
1 parent b5dbd12 commit 3924d77
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion test/test_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,18 @@
require 'shoulda-context'
require 'rspec/expectations'
require 'pry'
require 'simplecov'
require 'coveralls'
require 'ResourceHelper'
require 'RdfTestUtility'

Coveralls.wear!
SimpleCov.formatters = SimpleCov::Formatter::MultiFormatter.new([
SimpleCov::Formatter::HTMLFormatter,
Coveralls::SimpleCov::Formatter
])
SimpleCov.start do
add_filter ["/.vendor", "/vendor", "/test"]
end
require_relative '../lib/jekyll-rdf'

Jekyll.logger.log_level = :error
Expand Down

0 comments on commit 3924d77

Please sign in to comment.