Skip to content
Closed
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
1 change: 1 addition & 0 deletions .github/workflows/test-coverage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ permissions:

env:
COVERAGE: PartialSummary
BUNDLE_WITH: coverage

jobs:
test:
Expand Down
6 changes: 4 additions & 2 deletions config/sus.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,10 @@

Warning[:experimental] = false

require "covered/sus"
include Covered::Sus
if ENV.key?("COVERAGE")
require "covered/sus"
include Covered::Sus
end

# Intensive GC checking:
#
Expand Down
5 changes: 4 additions & 1 deletion gems.rb
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
group :test do
gem "sus"
gem "sus-fixtures-benchmark"
gem "covered"
gem "decode"

gem "rubocop"
Expand All @@ -31,3 +30,7 @@
gem "bake-test-external"
gem "async"
end

group :coverage, optional: true do
gem "covered"
end
Loading