-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove Coveralls gem, update simplcov
Coveralls have changed how they work, the gem is no longer supported, instead they rely on simplecov, simplecov-lcov and a GitHub action. Here we revove the Coveralls gem and update simplecov. The coverage is now output to `coverage/lcov.info`.
- Loading branch information
Showing
3 changed files
with
7 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,7 @@ | ||
# frozen_string_literal: true | ||
|
||
require "bundler/gem_tasks" | ||
require "rspec/core/rake_task" | ||
require "standard/rake" | ||
require "coveralls/rake/task" | ||
|
||
Coveralls::RakeTask.new | ||
|
||
RSpec::Core::RakeTask.new(:spec) | ||
|
||
task default: %i[standard spec coveralls:push] | ||
task default: %i[standard spec] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters