mirror of
https://github.com/samsonjs/instapaper.git
synced 2026-04-27 14:57:44 +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 @@
|
||||||
|
unless ENV['CI']
|
||||||
require 'simplecov'
|
require 'simplecov'
|
||||||
require File.expand_path('../../lib/instapaper', __FILE__)
|
SimpleCov.start do
|
||||||
|
add_filter '.bundle'
|
||||||
|
add_group 'Instapaper', 'lib/instapaper'
|
||||||
|
add_group 'Specs', 'spec'
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
require 'instapaper'
|
||||||
require 'rspec'
|
require 'rspec'
|
||||||
require 'webmock/rspec'
|
require 'webmock/rspec'
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue