test-unit-runner-junitxml 1.0.0 → 1.0.1
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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 61320d355fe2adcd355bcc18781b9ed175e2af2c24e9c629f0514980298179c7
|
4
|
+
data.tar.gz: d1948d49d59b793de0d14a0ce3315a4523b6c94754b1a8bd421dda9c18820be2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f79d7c300e10c6c74bf462db0c1004197cb04eefc185a6cea4abd276ab874cb28ac1881b7da9a1593337542ca809e4093598f28cbc20f4a1a9918d1ae97526fc
|
7
|
+
data.tar.gz: bc9343cbf04268b2a71c82b637eafaefbc04170bfdd2568a94e04bb41f217ec689ca4d514b90e0b332a58223bfa40d48d1b7df365b03cafc25111833ba41d658
|
@@ -0,0 +1,27 @@
|
|
1
|
+
name: Release
|
2
|
+
on:
|
3
|
+
push:
|
4
|
+
tags:
|
5
|
+
- "v*"
|
6
|
+
jobs:
|
7
|
+
push:
|
8
|
+
name: Push gem to RubyGems.org
|
9
|
+
runs-on: ubuntu-latest
|
10
|
+
|
11
|
+
permissions:
|
12
|
+
id-token: write # IMPORTANT: this permission is mandatory for trusted publishing
|
13
|
+
contents: write # IMPORTANT: this permission is required for `rake release` to push the release tag
|
14
|
+
|
15
|
+
environment: release
|
16
|
+
|
17
|
+
steps:
|
18
|
+
# Set up
|
19
|
+
- uses: actions/checkout@v4.2.2
|
20
|
+
- name: Set up Ruby
|
21
|
+
uses: ruby/setup-ruby@v1
|
22
|
+
with:
|
23
|
+
bundler-cache: true
|
24
|
+
ruby-version: ruby
|
25
|
+
|
26
|
+
# Release
|
27
|
+
- uses: rubygems/release-gem@v1.1.1
|
data/.github/workflows/test.yml
CHANGED
@@ -28,13 +28,9 @@ jobs:
|
|
28
28
|
runs-on: ${{ matrix.os }}
|
29
29
|
# continue-on-error: ${{ endsWith(matrix.ruby, 'head') }}
|
30
30
|
steps:
|
31
|
-
- uses: actions/checkout@
|
31
|
+
- uses: actions/checkout@v4
|
32
32
|
- uses: ruby/setup-ruby@v1
|
33
33
|
with:
|
34
34
|
ruby-version: ${{ matrix.ruby }}
|
35
35
|
bundler-cache: true
|
36
|
-
|
37
|
-
- if: matrix.ruby != 'jruby'
|
38
|
-
run: bundle exec rake test
|
39
|
-
- if: matrix.ruby == 'jruby'
|
40
|
-
run: bundle exec rake test TESTOPTS='--ignore-testcase=TestXmlMultibyteName'
|
36
|
+
- run: bundle exec rake test
|
@@ -9,17 +9,12 @@ Gem::Specification.new do |spec|
|
|
9
9
|
spec.email = ["kenichi@ice.email.ne.jp"]
|
10
10
|
|
11
11
|
spec.summary = %q{A test-unit runner that reports test result in JUnit XML format.}
|
12
|
-
|
13
|
-
spec.homepage = "https://github.com/kenichiice/test-unit-runner-junitxml"
|
12
|
+
spec.homepage = "https://github.com/test-unit/test-unit-runner-junitxml"
|
14
13
|
spec.license = "MIT"
|
15
14
|
|
16
|
-
# Specify which files should be added to the gem when it is released.
|
17
|
-
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
18
15
|
spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
|
19
16
|
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
20
17
|
end
|
21
|
-
#spec.bindir = "exe"
|
22
|
-
#spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
23
18
|
spec.require_paths = ["lib"]
|
24
19
|
|
25
20
|
spec.add_development_dependency "bundler"
|
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: test-unit-runner-junitxml
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- OGAWA KenIchi
|
8
|
-
autorequire:
|
9
8
|
bindir: bin
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 2025-03-25 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: bundler
|
@@ -66,13 +65,13 @@ dependencies:
|
|
66
65
|
- - ">="
|
67
66
|
- !ruby/object:Gem::Version
|
68
67
|
version: '0'
|
69
|
-
description:
|
70
68
|
email:
|
71
69
|
- kenichi@ice.email.ne.jp
|
72
70
|
executables: []
|
73
71
|
extensions: []
|
74
72
|
extra_rdoc_files: []
|
75
73
|
files:
|
74
|
+
- ".github/workflows/release.yml"
|
76
75
|
- ".github/workflows/test.yml"
|
77
76
|
- ".gitignore"
|
78
77
|
- Gemfile
|
@@ -85,11 +84,10 @@ files:
|
|
85
84
|
- lib/test/unit/ui/junitxml/testrunner.rb
|
86
85
|
- lib/test/unit/ui/junitxml/xml.erb
|
87
86
|
- test-unit-runner-junitxml.gemspec
|
88
|
-
homepage: https://github.com/
|
87
|
+
homepage: https://github.com/test-unit/test-unit-runner-junitxml
|
89
88
|
licenses:
|
90
89
|
- MIT
|
91
90
|
metadata: {}
|
92
|
-
post_install_message:
|
93
91
|
rdoc_options: []
|
94
92
|
require_paths:
|
95
93
|
- lib
|
@@ -104,8 +102,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
104
102
|
- !ruby/object:Gem::Version
|
105
103
|
version: '0'
|
106
104
|
requirements: []
|
107
|
-
rubygems_version: 3.
|
108
|
-
signing_key:
|
105
|
+
rubygems_version: 3.6.2
|
109
106
|
specification_version: 4
|
110
107
|
summary: A test-unit runner that reports test result in JUnit XML format.
|
111
108
|
test_files: []
|