mirror of
https://github.com/samsonjs/instapaper.git
synced 2026-03-25 08:55:49 +00:00
don't run code coverage in CI
This commit is contained in:
parent
aee8967117
commit
436c7be447
2 changed files with 10 additions and 5 deletions
|
|
@ -1,3 +0,0 @@
|
|||
SimpleCov.start do
|
||||
add_filter '.bundle'
|
||||
end
|
||||
|
|
@ -1,5 +1,13 @@
|
|||
require 'simplecov'
|
||||
require File.expand_path('../../lib/instapaper', __FILE__)
|
||||
unless ENV['CI']
|
||||
require 'simplecov'
|
||||
SimpleCov.start do
|
||||
add_filter '.bundle'
|
||||
add_group 'Instapaper', 'lib/instapaper'
|
||||
add_group 'Specs', 'spec'
|
||||
end
|
||||
end
|
||||
|
||||
require 'instapaper'
|
||||
require 'rspec'
|
||||
require 'webmock/rspec'
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue