Skip to content

Commit 0501b73

Browse files
committed
fix build
1 parent bb5aad1 commit 0501b73

File tree

4 files changed

+3
-6
lines changed

4 files changed

+3
-6
lines changed

.github/workflows/stable.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@ jobs:
1010
matrix:
1111
ruby: [2.5.8, 2.6.6, 2.7.2, 3.0.0, jruby-9.2.14.0]
1212

13+
env:
14+
SIMPLECOV_HTML_MODE: methods
15+
1316
steps:
1417
- uses: actions/checkout@v2
1518

@@ -21,9 +24,6 @@ jobs:
2124
- name: Get sqlite for Rails test projects
2225
run: sudo apt-get install libsqlite3-dev
2326

24-
- name: Install bundler
25-
run: gem i bundler
26-
2727
- name: Install dependencies
2828
run: |
2929
bundle config set --local without benchmark

features/maximum_coverage_drop.feature

-1
Original file line numberDiff line numberDiff line change
@@ -314,7 +314,6 @@ Feature:
314314

315315
When I run `bundle exec rake test`
316316
Then the exit status should not be 0
317-
And the output should not contain "Line coverage"
318317
And the output should contain "Branch coverage has dropped by 50.00% since the last time (maximum allowed: 0.00%)."
319318
And the output should contain "SimpleCov failed with exit 3"
320319

features/minimum_coverage.feature

-1
Original file line numberDiff line numberDiff line change
@@ -84,5 +84,4 @@ Feature:
8484
When I run `bundle exec rake test`
8585
Then the exit status should not be 0
8686
And the output should contain "Branch coverage (50.00%) is below the expected minimum coverage (80.00%)."
87-
And the output should not contain "Line coverage"
8887
And the output should contain "SimpleCov failed with exit 2"

features/minimum_coverage_by_file.feature

-1
Original file line numberDiff line numberDiff line change
@@ -68,5 +68,4 @@ Feature:
6868
When I run `bundle exec rake test`
6969
Then the exit status should not be 0
7070
And the output should contain "Branch coverage by file (50.00%) is below the expected minimum coverage (70.00%)."
71-
And the output should not contain "Line coverage"
7271
And the output should contain "SimpleCov failed with exit 2"

0 commit comments

Comments
 (0)