Skip to content

Commit f448291

Browse files
committed
Merge coverage test report
1 parent 9bc5088 commit f448291

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

.circleci/config.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@ jobs:
77
build:
88
docker:
99
- image: circleci/ruby:2.4.1-node-browsers
10-
10+
1111
- image: redislabs/redisgraph:edge
1212
port: 6379:6379
1313

1414
working_directory: ~/repo
1515

1616
steps:
1717
- checkout
18-
18+
1919
- restore_cache:
2020
keys:
2121
- v1-dependencies-{{ checksum "Gemfile" }}
@@ -31,7 +31,7 @@ jobs:
3131
paths:
3232
- ./vendor/bundle
3333
key: v1-dependencies-{{ checksum "Gemfile" }}
34-
34+
3535
# run tests!
3636
- run:
3737
name: run tests

test/test_suite.rb

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@
66
SimpleCov.start
77

88
require 'codecov'
9-
SimpleCov.formatter = SimpleCov::Formatter::Codecov
9+
formatter = SimpleCov::Formatter::Codecov.new
10+
formatter.format(SimpleCov::ResultMerger.merged_result)
1011

1112
# Helper functions
1213
# TODO it would be nice to have something like DisposableRedis

0 commit comments

Comments
 (0)