File tree Expand file tree Collapse file tree 4 files changed +22
-9
lines changed Expand file tree Collapse file tree 4 files changed +22
-9
lines changed Original file line number Diff line number Diff line change 1+ version : 2.1
2+ orbs :
3+ ruby : circleci/ruby@0.1.2
4+
5+ jobs :
6+ build :
7+ docker :
8+ - image : circleci/ruby:2.5.0
9+ environment :
10+ TEST_COVERAGE : true
11+
12+ executor : ruby/default
13+ steps :
14+ - checkout
15+ - ruby/bundle-install
16+ - run :
17+ name : Run tests
18+ command : bundle exec rake
19+
20+ - store_artifacts :
21+ path : coverage
22+ destination : coverage
Original file line number Diff line number Diff line change 1010
1111group :test do
1212 gem 'minitest' , '~> 5.14' , require : 'minitest/autorun'
13- gem 'minitest-ci' , '~> 3.4' , require : false
1413 gem 'minitest-reporters' , '~> 1.4'
1514 gem 'mocha' , '~> 1.11' , require : 'mocha/minitest'
1615 gem 'simplecov' , '~> 0.19' , require : false
Original file line number Diff line number Diff line change 1313 hashdiff (1.0.1 )
1414 method_source (1.0.0 )
1515 minitest (5.14.2 )
16- minitest-ci (3.4.0 )
17- minitest (>= 5.0.6 )
1816 minitest-reporters (1.4.2 )
1917 ansi
2018 builder
@@ -45,7 +43,6 @@ PLATFORMS
4543DEPENDENCIES
4644 dotenv (~> 2.7 )
4745 minitest (~> 5.14 )
48- minitest-ci (~> 3.4 )
4946 minitest-reporters (~> 1.4 )
5047 mocha (~> 1.11 )
5148 pry-byebug
Original file line number Diff line number Diff line change 1212
1313Bundler . require ( :test )
1414
15- if ENV [ 'CI' ]
16- require 'minitest/ci'
17- Minitest ::Ci . report_dir = 'test_results'
18- end
19-
2015Minitest ::Reporters . use! [ Minitest ::Reporters ::DefaultReporter . new ]
You can’t perform that action at this time.
0 commit comments