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 10
10
11
11
group :test do
12
12
gem 'minitest' , '~> 5.14' , require : 'minitest/autorun'
13
- gem 'minitest-ci' , '~> 3.4' , require : false
14
13
gem 'minitest-reporters' , '~> 1.4'
15
14
gem 'mocha' , '~> 1.11' , require : 'mocha/minitest'
16
15
gem 'simplecov' , '~> 0.19' , require : false
Original file line number Diff line number Diff line change 13
13
hashdiff (1.0.1 )
14
14
method_source (1.0.0 )
15
15
minitest (5.14.2 )
16
- minitest-ci (3.4.0 )
17
- minitest (>= 5.0.6 )
18
16
minitest-reporters (1.4.2 )
19
17
ansi
20
18
builder
@@ -45,7 +43,6 @@ PLATFORMS
45
43
DEPENDENCIES
46
44
dotenv (~> 2.7 )
47
45
minitest (~> 5.14 )
48
- minitest-ci (~> 3.4 )
49
46
minitest-reporters (~> 1.4 )
50
47
mocha (~> 1.11 )
51
48
pry-byebug
Original file line number Diff line number Diff line change 12
12
13
13
Bundler . require ( :test )
14
14
15
- if ENV [ 'CI' ]
16
- require 'minitest/ci'
17
- Minitest ::Ci . report_dir = 'test_results'
18
- end
19
-
20
15
Minitest ::Reporters . use! [ Minitest ::Reporters ::DefaultReporter . new ]
0 commit comments