Skip to content

Commit

Permalink
Merge pull request #266 from AKSW/feature/repairTestcoverage
Browse files Browse the repository at this point in the history
Feature/repair testcoverage
  • Loading branch information
white-gecko authored Mar 26, 2019
2 parents 2124dc0 + 3924d77 commit 46c890c
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion test/test_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,19 @@
require 'shoulda-context'
require 'rspec/expectations'
require 'pry'
require 'simplecov'
require 'coveralls'
require 'ResourceHelper'
require 'RdfTestUtility'

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'
Coveralls.wear!

Jekyll.logger.log_level = :error
class TestHelper
Expand Down

0 comments on commit 46c890c

Please sign in to comment.