Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove code coverage stats as they aren't being consumed. #1075

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -16,16 +16,12 @@
*#
*.swp

coverage/*
*.pyc

# IDEA files
.idea/*
*.iml

# Keep project coverage statistics under source control
!coverage/.last_run.json

# OS generated files
.DS_Store
.DS_Store?
Expand Down
1 change: 0 additions & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,4 @@ group :test do
gem 'parallel_tests'
gem 'rspec'
gem 'rubocop', '~> 0.60.0'
gem 'simplecov'
end
6 changes: 0 additions & 6 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,6 @@ GEM
ruby-progressbar (~> 1.7)
unicode-display_width (~> 1.4.0)
ruby-progressbar (1.10.0)
simplecov (0.16.1)
docile (~> 1.1)
json (>= 1.8, < 3)
simplecov-html (~> 0.10.0)
simplecov-html (0.10.2)
thread_safe (0.3.6)
tzinfo (1.2.5)
thread_safe (~> 0.1)
Expand All @@ -72,7 +67,6 @@ DEPENDENCIES
rake
rspec
rubocop (~> 0.60.0)
simplecov

BUNDLED WITH
1.16.5
5 changes: 0 additions & 5 deletions coverage/.last_run.json

This file was deleted.

3 changes: 0 additions & 3 deletions spec/spec_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,6 @@
# See the License for the specific language governing permissions and
# limitations under the License.

require 'simplecov'
SimpleCov.start unless ENV['DISABLE_COVERAGE']

RSpec.configure do |config|
config.mock_with :mocha
end
Expand Down