File tree Expand file tree Collapse file tree 1 file changed +2
-19
lines changed
Expand file tree Collapse file tree 1 file changed +2
-19
lines changed Original file line number Diff line number Diff line change 99 steps :
1010 - checkout
1111 - ruby/bundle-install
12-
13-
14-
15- test : # our next job, called "test"
16- # we run "parallel job containers" to enable speeding up our tests;
17- # this splits our tests across multiple containers.
18- parallelism : 3
19- # here we set TWO docker images.
20- docker :
21- - image : circleci/ruby:2.6.3
22-
23- environment :
24- CC_TEST_REPORTER_ID : $CC_TEST_REPORTER_ID
25- steps :
26- - checkout
27- - ruby/install-deps
28-
2912 - run :
3013 name : Setup dummy app
3114 command : cd spec/dummy && bin/setup
@@ -36,11 +19,11 @@ jobs:
3619 chmod +x ./cc-test-reporter
3720 - run :
3821 name : Test report
39- command : cc-test-reporter before-build
22+ command : ./ cc-test-reporter before-build
4023 - run :
4124 name : Run tests
4225 command : bundle exec rspec
4326 - run :
4427 name : Test report
4528 command : |
46- cc-test-reporter after-build
29+ ./ cc-test-reporter after-build
You can’t perform that action at this time.
0 commit comments