Skip to content

Commit 6e7efda

Browse files
author
stevenallen05
authored
Merge branch 'master' into feature/idaptive-integration
2 parents ef2e842 + 332f91e commit 6e7efda

File tree

1 file changed

+2
-19
lines changed

1 file changed

+2
-19
lines changed

.circleci/config.yml

Lines changed: 2 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -9,23 +9,6 @@ jobs:
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

0 commit comments

Comments
 (0)