circleci-test_report 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: b2680ac3c2f53ffdc9b5909d6052de99f5359a0f
4
+ data.tar.gz: 320d78f7e60890b3d76ad08e1c96a1eb6ee0842a
5
+ SHA512:
6
+ metadata.gz: bccffe751d0df9f877dee03f37690d8ae3c157cd7ba785be3471d6cd9aabf3df85d1398b7d9d19448549ec60a940683ee263c6bdf7f08ff7cf652d9d723209e2
7
+ data.tar.gz: 6020d90359499cb2d1aa26b0378bbffa38e80452e05a0f1d5434ea5efaa8e2b191a76da8742ce3e9c2424cac73000e6e0d5d5c44f476a3dc546d0c2f94d895a9
data/.gitignore ADDED
@@ -0,0 +1,11 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /_yardoc/
4
+ /coverage/
5
+ /doc/
6
+ /pkg/
7
+ /spec/reports/
8
+ /tmp/
9
+
10
+ # rspec failure tracking
11
+ .rspec_status
data/.rspec ADDED
@@ -0,0 +1,3 @@
1
+ --format documentation
2
+ --color
3
+ --require spec_helper
data/.rubocop.yml ADDED
@@ -0,0 +1,144 @@
1
+ AllCops:
2
+ TargetRubyVersion: 2.4
3
+ # RuboCop has a bunch of cops enabled by default. This setting tells RuboCop
4
+ # to ignore them, so only the ones explicitly set in this file are enabled.
5
+ DisabledByDefault: true
6
+
7
+ # Prefer &&/|| over and/or.
8
+ Style/AndOr:
9
+ Enabled: true
10
+
11
+ # Do not use braces for hash literals when they are the last argument of a
12
+ # method call.
13
+ Style/BracesAroundHashParameters:
14
+ Enabled: true
15
+ EnforcedStyle: context_dependent
16
+
17
+ # Align `when` with `case`.
18
+ Layout/CaseIndentation:
19
+ Enabled: true
20
+
21
+ # Align comments with method definitions.
22
+ Layout/CommentIndentation:
23
+ Enabled: true
24
+
25
+ Layout/ElseAlignment:
26
+ Enabled: true
27
+
28
+ Layout/EmptyLineAfterMagicComment:
29
+ Enabled: true
30
+
31
+ # In a regular class definition, no empty lines around the body.
32
+ Layout/EmptyLinesAroundClassBody:
33
+ Enabled: true
34
+
35
+ # In a regular method definition, no empty lines around the body.
36
+ Layout/EmptyLinesAroundMethodBody:
37
+ Enabled: true
38
+
39
+ # In a regular module definition, no empty lines around the body.
40
+ Layout/EmptyLinesAroundModuleBody:
41
+ Enabled: true
42
+
43
+ Layout/FirstParameterIndentation:
44
+ Enabled: true
45
+
46
+ # Use Ruby >= 1.9 syntax for hashes. Prefer { a: :b } over { :a => :b }.
47
+ Style/HashSyntax:
48
+ Enabled: true
49
+
50
+ # Method definitions after `private` or `protected` isolated calls need one
51
+ # extra level of indentation.
52
+ Layout/IndentationConsistency:
53
+ Enabled: true
54
+ EnforcedStyle: rails
55
+
56
+ # Two spaces, no tabs (for indentation).
57
+ Layout/IndentationWidth:
58
+ Enabled: true
59
+
60
+ Layout/LeadingCommentSpace:
61
+ Enabled: true
62
+
63
+ Layout/SpaceAfterColon:
64
+ Enabled: true
65
+
66
+ Layout/SpaceAfterComma:
67
+ Enabled: true
68
+
69
+ Layout/SpaceAroundEqualsInParameterDefault:
70
+ Enabled: true
71
+
72
+ Layout/SpaceAroundKeyword:
73
+ Enabled: true
74
+
75
+ Layout/SpaceAroundOperators:
76
+ Enabled: true
77
+
78
+ Layout/SpaceBeforeComma:
79
+ Enabled: true
80
+
81
+ Layout/SpaceBeforeFirstArg:
82
+ Enabled: true
83
+
84
+ Style/DefWithParentheses:
85
+ Enabled: true
86
+
87
+ # Defining a method with parameters needs parentheses.
88
+ Style/MethodDefParentheses:
89
+ Enabled: true
90
+
91
+ # Use `foo {}` not `foo{}`.
92
+ Layout/SpaceBeforeBlockBraces:
93
+ Enabled: true
94
+
95
+ # Use `foo { bar }` not `foo {bar}`.
96
+ Layout/SpaceInsideBlockBraces:
97
+ Enabled: true
98
+
99
+ # Use `{ a: 1 }` not `{a:1}`.
100
+ Layout/SpaceInsideHashLiteralBraces:
101
+ Enabled: true
102
+
103
+ Layout/SpaceInsideParens:
104
+ Enabled: true
105
+
106
+ # Check quotes usage according to lint rule below.
107
+ Style/StringLiterals:
108
+ Enabled: true
109
+ EnforcedStyle: double_quotes
110
+
111
+ # Detect hard tabs, no hard tabs.
112
+ Layout/Tab:
113
+ Enabled: true
114
+
115
+ # Blank lines should not have any spaces.
116
+ Layout/TrailingBlankLines:
117
+ Enabled: true
118
+
119
+ # No trailing whitespace.
120
+ Layout/TrailingWhitespace:
121
+ Enabled: true
122
+
123
+ # Use quotes for string literals when they are enough.
124
+ Style/UnneededPercentQ:
125
+ Enabled: true
126
+
127
+ # Align `end` with the matching keyword or starting expression except for
128
+ # assignments, where it should be aligned with the LHS.
129
+ Lint/EndAlignment:
130
+ Enabled: true
131
+ EnforcedStyleAlignWith: variable
132
+ AutoCorrect: true
133
+
134
+ # Use my_method(my_arg) not my_method( my_arg ) or my_method my_arg.
135
+ Lint/RequireParentheses:
136
+ Enabled: true
137
+
138
+ Style/RedundantReturn:
139
+ Enabled: true
140
+ AllowMultipleReturnValues: true
141
+
142
+ Style/Semicolon:
143
+ Enabled: true
144
+ AllowAsExpressionSeparator: true
data/.travis.yml ADDED
@@ -0,0 +1,5 @@
1
+ sudo: false
2
+ language: ruby
3
+ rvm:
4
+ - 2.3.1
5
+ before_install: gem install bundler -v 1.16.1
data/Gemfile ADDED
@@ -0,0 +1,6 @@
1
+ source "https://rubygems.org"
2
+
3
+ git_source(:github) { |repo_name| "https://github.com/#{repo_name}" }
4
+
5
+ # Specify your gem's dependencies in circleci-test_report.gemspec
6
+ gemspec
data/Gemfile.lock ADDED
@@ -0,0 +1,62 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ circleci-test_report (0.1.0)
5
+ builder
6
+ thor
7
+
8
+ GEM
9
+ remote: https://rubygems.org/
10
+ specs:
11
+ activesupport (5.1.5)
12
+ concurrent-ruby (~> 1.0, >= 1.0.2)
13
+ i18n (~> 0.7)
14
+ minitest (~> 5.1)
15
+ tzinfo (~> 1.1)
16
+ builder (3.2.3)
17
+ byebug (10.0.0)
18
+ coderay (1.1.2)
19
+ concurrent-ruby (1.0.5)
20
+ diff-lcs (1.3)
21
+ i18n (0.9.5)
22
+ concurrent-ruby (~> 1.0)
23
+ method_source (0.9.0)
24
+ minitest (5.11.3)
25
+ pry (0.11.3)
26
+ coderay (~> 1.1.0)
27
+ method_source (~> 0.9.0)
28
+ pry-byebug (3.6.0)
29
+ byebug (~> 10.0)
30
+ pry (~> 0.10)
31
+ rake (10.5.0)
32
+ rspec (3.7.0)
33
+ rspec-core (~> 3.7.0)
34
+ rspec-expectations (~> 3.7.0)
35
+ rspec-mocks (~> 3.7.0)
36
+ rspec-core (3.7.1)
37
+ rspec-support (~> 3.7.0)
38
+ rspec-expectations (3.7.0)
39
+ diff-lcs (>= 1.2.0, < 2.0)
40
+ rspec-support (~> 3.7.0)
41
+ rspec-mocks (3.7.0)
42
+ diff-lcs (>= 1.2.0, < 2.0)
43
+ rspec-support (~> 3.7.0)
44
+ rspec-support (3.7.0)
45
+ thor (0.20.0)
46
+ thread_safe (0.3.6)
47
+ tzinfo (1.2.5)
48
+ thread_safe (~> 0.1)
49
+
50
+ PLATFORMS
51
+ ruby
52
+
53
+ DEPENDENCIES
54
+ activesupport
55
+ bundler (~> 1.16)
56
+ circleci-test_report!
57
+ pry-byebug
58
+ rake (~> 10.0)
59
+ rspec (~> 3.0)
60
+
61
+ BUNDLED WITH
62
+ 1.16.1
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2018 Akira Kusumoto
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,46 @@
1
+ # CircleCI-TestReport
2
+
3
+ Create Test metadata for CircleCI
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ ```ruby
10
+ gem 'circleci-test_report'
11
+ ```
12
+
13
+ And then execute:
14
+
15
+ $ bundle
16
+
17
+ Or install it yourself as:
18
+
19
+ $ gem install circleci-test_report
20
+
21
+ ## Usage
22
+
23
+ ```
24
+ % bundle exec rspec ./spec -f json -o rspec.json
25
+ % circleci-test_report -f rspec.json -o junit_format.xml
26
+ ```
27
+
28
+ ```ruby
29
+ require "circleci/test_report"
30
+
31
+ xml_text = CircleCI::TestReport.create_xml(rspec_json: File.read('rspec.json'))
32
+ ```
33
+
34
+ ## Development
35
+
36
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
37
+
38
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
39
+
40
+ ## Contributing
41
+
42
+ Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/circleci-test_report.
43
+
44
+ ## License
45
+
46
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
data/Rakefile ADDED
@@ -0,0 +1,6 @@
1
+ require "bundler/gem_tasks"
2
+ require "rspec/core/rake_task"
3
+
4
+ RSpec::Core::RakeTask.new(:spec)
5
+
6
+ task default: :spec
data/bin/console ADDED
@@ -0,0 +1,7 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "circleci/test_report"
5
+
6
+ require "pry"
7
+ Pry.start
data/bin/setup ADDED
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,31 @@
1
+ lib = File.expand_path("../lib", __FILE__)
2
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
3
+ require "circleci/test_report/version"
4
+
5
+ Gem::Specification.new do |spec|
6
+ spec.name = "circleci-test_report"
7
+ spec.version = CircleCI::TestReport::VERSION
8
+ spec.authors = ["Akira Kusumoto"]
9
+ spec.email = ["akirakusumo10@gmail.com"]
10
+
11
+ spec.summary = "Create Test metadata for CircleCI"
12
+ spec.description = "Create Test metadata for CircleCI"
13
+ spec.homepage = "https://github.com/bluerabbit/circleci-test_report"
14
+ spec.license = "MIT"
15
+
16
+ spec.files = `git ls-files -z`.split("\x0").reject do |f|
17
+ f.match(%r{^(test|spec|features)/})
18
+ end
19
+ spec.bindir = "exe"
20
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
21
+ spec.require_paths = ["lib"]
22
+
23
+ spec.add_runtime_dependency "builder"
24
+ spec.add_runtime_dependency "thor"
25
+
26
+ spec.add_development_dependency "activesupport"
27
+ spec.add_development_dependency "bundler", "~> 1.16"
28
+ spec.add_development_dependency "pry-byebug"
29
+ spec.add_development_dependency "rake", "~> 10.0"
30
+ spec.add_development_dependency "rspec", "~> 3.0"
31
+ end
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env ruby
2
+ require "circleci/test_report/cli"
3
+
4
+ CircleCI::TestReport::Cli.start
@@ -0,0 +1,29 @@
1
+ require "thor"
2
+ require "circleci/test_report"
3
+
4
+ module CircleCI
5
+ module TestReport
6
+ class Cli < Thor
7
+ default_command :convert
8
+
9
+ desc "convert", "Create JUnit format xml"
10
+ method_option :file, aliases: "-f", required: true, desc: "rspec file path"
11
+ method_option :output, aliases: "-o", required: false, desc: "JUnit format xml file path"
12
+
13
+ def convert
14
+ xml = CircleCI::TestReport.create_xml(rspec_json: File.read(options[:file]))
15
+ if output_path = options[:output]
16
+ File.open(output_path, "w+") { |file| file.write xml }
17
+ else
18
+ puts xml
19
+ end
20
+ end
21
+
22
+ desc "version", "Show Version"
23
+
24
+ def version
25
+ say "Version: #{CircleCI::TestReport::VERSION}"
26
+ end
27
+ end
28
+ end
29
+ end
@@ -0,0 +1,16 @@
1
+ module CircleCI
2
+ module TestReport
3
+ class TestCase
4
+ attr_accessor :classname, :name, :file, :time, :failure, :skipped
5
+
6
+ def initialize
7
+ @classname = ""
8
+ @name = ""
9
+ @file = ""
10
+ @time = ""
11
+ @failure = nil # {message: '', type: '', text: ''}
12
+ @skipped = false
13
+ end
14
+ end
15
+ end
16
+ end
@@ -0,0 +1,57 @@
1
+ require "builder"
2
+
3
+ module CircleCI
4
+ module TestReport
5
+ class TestSuite
6
+ attr_accessor :name, :tests, :skipped, :failures, :errors, :time, :timestamp, :seed, :test_cases, :hostname
7
+
8
+ def initialize
9
+ @test_cases = []
10
+ @name = ""
11
+ @tests = 0
12
+ @skipped = 0
13
+ @failures = 0
14
+ @errors = 0
15
+ @time = 0
16
+ @timestamp = nil
17
+ @seed = 0
18
+ @hostname = ""
19
+ end
20
+
21
+ def add_test_case(testcase)
22
+ @test_cases << testcase
23
+ end
24
+
25
+ def to_xml
26
+ xml_markup = Builder::XmlMarkup.new
27
+ xml_markup.instruct!
28
+ xml_markup.testsuite(name: name,
29
+ tests: tests,
30
+ skipped: skipped,
31
+ failures: failures,
32
+ errors: errors,
33
+ time: time,
34
+ timestamp: timestamp,
35
+ hostname: hostname) do |testsuite|
36
+
37
+ testsuite.properties { |p| p.property(name: "seed", value: seed) }
38
+
39
+ test_cases.each do |test_case|
40
+ testsuite.testcase(classname: test_case.classname,
41
+ name: test_case.name,
42
+ file: test_case.file,
43
+ time: test_case.time) do |t|
44
+ if test_case.failure
45
+ t.failure(message: test_case.failure[:message], type: test_case.failure[:type]) do |f|
46
+ f.text! test_case.failure[:text]
47
+ end
48
+ elsif test_case.skipped
49
+ t.skipped
50
+ end
51
+ end
52
+ end
53
+ end
54
+ end
55
+ end
56
+ end
57
+ end
@@ -0,0 +1,5 @@
1
+ module CircleCI
2
+ module TestReport
3
+ VERSION = "0.1.0"
4
+ end
5
+ end
@@ -0,0 +1,48 @@
1
+ require "circleci/test_report/version"
2
+ require "circleci/test_report/test_case"
3
+ require "circleci/test_report/test_suite"
4
+ require "time"
5
+ require "json"
6
+
7
+ module CircleCI
8
+ module TestReport
9
+ class << self
10
+ def create_xml(rspec_json:, timestamp: Time.now.iso8601, hostname: "unknown")
11
+ rspec_hash = JSON.parse(rspec_json)
12
+ summary = rspec_hash["summary"]
13
+
14
+ suite = TestSuite.new
15
+ suite.name = "rspec"
16
+ suite.tests = summary["example_count"]
17
+ suite.skipped = summary["pending_count"]
18
+ suite.failures = summary["failure_count"]
19
+ suite.errors = summary["errors_outside_of_examples_count"]
20
+ suite.time = summary["duration"]
21
+ suite.timestamp = timestamp
22
+ suite.hostname = hostname
23
+ suite.seed = 0
24
+
25
+ rspec_hash["examples"].each do |example|
26
+ testcase = TestCase.new
27
+ testcase.classname = example["file_path"].split(".")[1].split("/")[1..-1].join(".")
28
+ testcase.name = example["full_description"]
29
+ testcase.file = example["file_path"]
30
+ testcase.time = example["run_time"]
31
+ case example["status"]
32
+ when "failed"
33
+ testcase.failure = {
34
+ message: example["exception"]["message"],
35
+ type: example["exception"]["class"],
36
+ text: example["exception"]["backtrace"].join("\n")
37
+ }
38
+ when "pending"
39
+ testcase.skipped = true
40
+ end
41
+ suite.add_test_case(testcase)
42
+ end
43
+
44
+ suite.to_xml
45
+ end
46
+ end
47
+ end
48
+ end
metadata ADDED
@@ -0,0 +1,161 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: circleci-test_report
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Akira Kusumoto
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2018-02-20 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: builder
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: thor
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: activesupport
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: bundler
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '1.16'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '1.16'
69
+ - !ruby/object:Gem::Dependency
70
+ name: pry-byebug
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ">="
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - ">="
81
+ - !ruby/object:Gem::Version
82
+ version: '0'
83
+ - !ruby/object:Gem::Dependency
84
+ name: rake
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - "~>"
88
+ - !ruby/object:Gem::Version
89
+ version: '10.0'
90
+ type: :development
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - "~>"
95
+ - !ruby/object:Gem::Version
96
+ version: '10.0'
97
+ - !ruby/object:Gem::Dependency
98
+ name: rspec
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - "~>"
102
+ - !ruby/object:Gem::Version
103
+ version: '3.0'
104
+ type: :development
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - "~>"
109
+ - !ruby/object:Gem::Version
110
+ version: '3.0'
111
+ description: Create Test metadata for CircleCI
112
+ email:
113
+ - akirakusumo10@gmail.com
114
+ executables:
115
+ - circleci-test_report
116
+ extensions: []
117
+ extra_rdoc_files: []
118
+ files:
119
+ - ".gitignore"
120
+ - ".rspec"
121
+ - ".rubocop.yml"
122
+ - ".travis.yml"
123
+ - Gemfile
124
+ - Gemfile.lock
125
+ - LICENSE.txt
126
+ - README.md
127
+ - Rakefile
128
+ - bin/console
129
+ - bin/setup
130
+ - circleci-test_report.gemspec
131
+ - exe/circleci-test_report
132
+ - lib/circleci/test_report.rb
133
+ - lib/circleci/test_report/cli.rb
134
+ - lib/circleci/test_report/test_case.rb
135
+ - lib/circleci/test_report/test_suite.rb
136
+ - lib/circleci/test_report/version.rb
137
+ homepage: https://github.com/bluerabbit/circleci-test_report
138
+ licenses:
139
+ - MIT
140
+ metadata: {}
141
+ post_install_message:
142
+ rdoc_options: []
143
+ require_paths:
144
+ - lib
145
+ required_ruby_version: !ruby/object:Gem::Requirement
146
+ requirements:
147
+ - - ">="
148
+ - !ruby/object:Gem::Version
149
+ version: '0'
150
+ required_rubygems_version: !ruby/object:Gem::Requirement
151
+ requirements:
152
+ - - ">="
153
+ - !ruby/object:Gem::Version
154
+ version: '0'
155
+ requirements: []
156
+ rubyforge_project:
157
+ rubygems_version: 2.6.13
158
+ signing_key:
159
+ specification_version: 4
160
+ summary: Create Test metadata for CircleCI
161
+ test_files: []