hiptest-publisher 3.0.0 → 3.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +2 -0
- data/config/locales/en.yml +3 -0
- data/lib/hiptest-publisher/cli_options_checker.rb +7 -0
- data/lib/hiptest-publisher/client.rb +15 -4
- data/lib/hiptest-publisher/options_parser.rb +2 -0
- metadata +30 -33
- data/CHANGELOG.md +0 -310
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ee9b0d1139b33645d29b179ef632be982d319130dfe33f004e0957007180b3ab
|
4
|
+
data.tar.gz: b3bffa7ccb55a32d588094c539d177fd80bb8451aa17c95d51524281b7b40d2f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9b237b6737ce397d3989e1cdfa53146c9ace569cc6073419cd459b893d86c328de1e4aa62c3e936075ecaa66a273e275882a868d82e43518d1cf6a14587cc96e
|
7
|
+
data.tar.gz: 200e77bc3b0cca2fbb3e239f98c7e9ebaed75a21972e5f4fc4f237a7f019ec34a039e38fa2b594c15ea11e9e6a516226c0d6528f8a0fd78b9d8e9a70485d110e
|
data/README.md
CHANGED
@@ -143,6 +143,8 @@ Specific options:
|
|
143
143
|
When there is no results file to push, report a global failure (default: false)
|
144
144
|
--push-format=tap Format of the test results (cucumber-json, junit, nunit, robot, tap) (default: tap)
|
145
145
|
--execution-environment=NAME Name of the execution environment
|
146
|
+
--build-id=ID ID of an existing build the results will be added to
|
147
|
+
--build-name=NAME Name for the build that will be created in CucumberStudio (build names are not unique)
|
146
148
|
--sort=[id,order,alpha] Sorting of tests in output: id will sort them by age, order will keep the same order than in hiptest (only with --with-folders option, will fallback to id otherwise), alpha will sort them by name (default: order)
|
147
149
|
--[no-]uids Export UIDs (note: can be disabled only for Gherkin-based exports, may cause issue when pushing results back) (default: true)
|
148
150
|
--[no-]parent-folder-tags Export tags from parent folders (note: if set to false, those tags are never rendered. Only available for Gherkin base exports) (default: true)
|
data/config/locales/en.yml
CHANGED
@@ -109,6 +109,7 @@ en:
|
|
109
109
|
You specified multiple filters for the export.
|
110
110
|
|
111
111
|
Only one filter can be applied.
|
112
|
+
multiple_build_options: 'Error with --push: you can not specify both --build-id and --build-name options'
|
112
113
|
output_directory_not_directory: 'Error with --output-directory: the file "%{output_dir}" is not a directory'
|
113
114
|
output_directory_not_writable: 'Error with --output-directory: the directory "%{output_dir}" is not writable'
|
114
115
|
output_directory_parent_not_writable: 'Error with --output-directory: the directory "%{output_dir}" can not be created because "%{realpath}" is not writable'
|
@@ -167,6 +168,8 @@ en:
|
|
167
168
|
aw_deleted: Output signature of deleted action words
|
168
169
|
aw_renamed: Output signatures of renamed action words
|
169
170
|
aw_signature_changed: Output signatures of action words for which signature changed
|
171
|
+
build_id: ID of an existing build the results will be added to
|
172
|
+
build_name: Name for the build that will be created in CucumberStudio (build names are not unique)
|
170
173
|
check_version: Check if a new release of hiptest-publisher is available
|
171
174
|
color: Force [un]use of ANSI color in text output
|
172
175
|
config: Configuration file
|
@@ -29,6 +29,7 @@ module Hiptest
|
|
29
29
|
if cli_options.push?
|
30
30
|
check_execution_environment
|
31
31
|
check_push_file
|
32
|
+
check_build_options
|
32
33
|
else
|
33
34
|
check_output_directory
|
34
35
|
check_actionwords_signature_file
|
@@ -213,6 +214,12 @@ module Hiptest
|
|
213
214
|
end
|
214
215
|
end
|
215
216
|
|
217
|
+
def check_build_options
|
218
|
+
if present?(cli_options.build_id) && present?(cli_options.build_name)
|
219
|
+
raise CliOptionError, I18n.t('errors.cli_options.multiple_build_options')
|
220
|
+
end
|
221
|
+
end
|
222
|
+
|
216
223
|
private
|
217
224
|
|
218
225
|
def numeric?(arg)
|
@@ -41,7 +41,7 @@ module Hiptest
|
|
41
41
|
|
42
42
|
def url
|
43
43
|
if cli_options.push?
|
44
|
-
"#{cli_options.site}/import_test_results/#{cli_options.token}/#{cli_options.push_format}#{
|
44
|
+
"#{cli_options.site}/import_test_results/#{cli_options.token}/#{cli_options.push_format}#{push_query_parameters}"
|
45
45
|
elsif test_run_id
|
46
46
|
"#{base_publication_path}/test_run/#{test_run_id}#{test_run_export_filter}"
|
47
47
|
else
|
@@ -306,10 +306,21 @@ module Hiptest
|
|
306
306
|
).find_proxy
|
307
307
|
end
|
308
308
|
|
309
|
-
def
|
310
|
-
|
309
|
+
def push_query_parameters
|
310
|
+
parameters = {}
|
311
|
+
unless cli_options.execution_environment.strip.empty?
|
312
|
+
parameters['execution_environment'] = cli_options.execution_environment
|
313
|
+
end
|
314
|
+
|
315
|
+
unless cli_options.build_id.strip.empty?
|
316
|
+
parameters['build_id'] = cli_options.build_id
|
317
|
+
end
|
318
|
+
|
319
|
+
unless cli_options.build_name.strip.empty?
|
320
|
+
parameters['build_name'] = cli_options.build_name
|
321
|
+
end
|
311
322
|
|
312
|
-
""
|
323
|
+
parameters.empty? ? "" : "?#{parameters.map {|key, value| "#{key}=#{URI.escape(value)}"}.join("&")}"
|
313
324
|
end
|
314
325
|
end
|
315
326
|
end
|
@@ -258,6 +258,8 @@ class OptionsParser
|
|
258
258
|
Option.new(nil, 'global-failure-on-missing-reports', false, nil, I18n.t('options.global_failure_on_missing_reports'), :global_failure_on_missing_reports),
|
259
259
|
Option.new(nil, 'push-format=tap', 'tap', String, I18n.t('options.push_format'), :push_format),
|
260
260
|
Option.new(nil, 'execution-environment=NAME', '', String, I18n.t('options.execution_environment'), :execution_environment),
|
261
|
+
Option.new(nil, 'build-id=ID', '', String, I18n.t('options.build_id'), :build_id),
|
262
|
+
Option.new(nil, 'build-name=NAME', '', String, I18n.t('options.build_name'), :build_name),
|
261
263
|
Option.new(nil, 'sort=[id,order,alpha]', 'order', String, I18n.t('options.sort'), :sort),
|
262
264
|
Option.new(nil, '[no-]uids', false, nil, I18n.t('options.uids'), :uids),
|
263
265
|
Option.new(nil, '[no-]parent-folder-tags', true, nil, I18n.t('options.parent_folder_tags'), :parent_folder_tags),
|
metadata
CHANGED
@@ -1,55 +1,55 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: hiptest-publisher
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.
|
4
|
+
version: 3.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- CucumberStudio R&D
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-
|
11
|
+
date: 2021-10-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: colorize
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- - ">="
|
18
|
-
- !ruby/object:Gem::Version
|
19
|
-
version: 0.7.5
|
20
17
|
- - "~>"
|
21
18
|
- !ruby/object:Gem::Version
|
22
19
|
version: '0.7'
|
20
|
+
- - ">="
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: 0.7.5
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
26
26
|
requirements:
|
27
|
-
- - ">="
|
28
|
-
- !ruby/object:Gem::Version
|
29
|
-
version: 0.7.5
|
30
27
|
- - "~>"
|
31
28
|
- !ruby/object:Gem::Version
|
32
29
|
version: '0.7'
|
30
|
+
- - ">="
|
31
|
+
- !ruby/object:Gem::Version
|
32
|
+
version: 0.7.5
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: parseconfig
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
36
36
|
requirements:
|
37
|
-
- - ">="
|
38
|
-
- !ruby/object:Gem::Version
|
39
|
-
version: 1.0.4
|
40
37
|
- - "~>"
|
41
38
|
- !ruby/object:Gem::Version
|
42
39
|
version: '1.0'
|
40
|
+
- - ">="
|
41
|
+
- !ruby/object:Gem::Version
|
42
|
+
version: 1.0.4
|
43
43
|
type: :runtime
|
44
44
|
prerelease: false
|
45
45
|
version_requirements: !ruby/object:Gem::Requirement
|
46
46
|
requirements:
|
47
|
-
- - ">="
|
48
|
-
- !ruby/object:Gem::Version
|
49
|
-
version: 1.0.4
|
50
47
|
- - "~>"
|
51
48
|
- !ruby/object:Gem::Version
|
52
49
|
version: '1.0'
|
50
|
+
- - ">="
|
51
|
+
- !ruby/object:Gem::Version
|
52
|
+
version: 1.0.4
|
53
53
|
- !ruby/object:Gem::Dependency
|
54
54
|
name: i18n
|
55
55
|
requirement: !ruby/object:Gem::Requirement
|
@@ -88,22 +88,22 @@ dependencies:
|
|
88
88
|
name: multipart-post
|
89
89
|
requirement: !ruby/object:Gem::Requirement
|
90
90
|
requirements:
|
91
|
-
- - ">="
|
92
|
-
- !ruby/object:Gem::Version
|
93
|
-
version: 2.1.1
|
94
91
|
- - "~>"
|
95
92
|
- !ruby/object:Gem::Version
|
96
93
|
version: '2.1'
|
94
|
+
- - ">="
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: 2.1.1
|
97
97
|
type: :runtime
|
98
98
|
prerelease: false
|
99
99
|
version_requirements: !ruby/object:Gem::Requirement
|
100
100
|
requirements:
|
101
|
-
- - ">="
|
102
|
-
- !ruby/object:Gem::Version
|
103
|
-
version: 2.1.1
|
104
101
|
- - "~>"
|
105
102
|
- !ruby/object:Gem::Version
|
106
103
|
version: '2.1'
|
104
|
+
- - ">="
|
105
|
+
- !ruby/object:Gem::Version
|
106
|
+
version: 2.1.1
|
107
107
|
- !ruby/object:Gem::Dependency
|
108
108
|
name: ruby_version
|
109
109
|
requirement: !ruby/object:Gem::Requirement
|
@@ -192,22 +192,22 @@ dependencies:
|
|
192
192
|
name: codeclimate-test-reporter
|
193
193
|
requirement: !ruby/object:Gem::Requirement
|
194
194
|
requirements:
|
195
|
-
- - ">="
|
196
|
-
- !ruby/object:Gem::Version
|
197
|
-
version: 0.4.6
|
198
195
|
- - "~>"
|
199
196
|
- !ruby/object:Gem::Version
|
200
197
|
version: '0.4'
|
198
|
+
- - ">="
|
199
|
+
- !ruby/object:Gem::Version
|
200
|
+
version: 0.4.6
|
201
201
|
type: :development
|
202
202
|
prerelease: false
|
203
203
|
version_requirements: !ruby/object:Gem::Requirement
|
204
204
|
requirements:
|
205
|
-
- - ">="
|
206
|
-
- !ruby/object:Gem::Version
|
207
|
-
version: 0.4.6
|
208
205
|
- - "~>"
|
209
206
|
- !ruby/object:Gem::Version
|
210
207
|
version: '0.4'
|
208
|
+
- - ">="
|
209
|
+
- !ruby/object:Gem::Version
|
210
|
+
version: 0.4.6
|
211
211
|
- !ruby/object:Gem::Dependency
|
212
212
|
name: i18n-tasks
|
213
213
|
requirement: !ruby/object:Gem::Requirement
|
@@ -257,11 +257,9 @@ executables:
|
|
257
257
|
- hiptest-publisher
|
258
258
|
extensions: []
|
259
259
|
extra_rdoc_files:
|
260
|
-
- CHANGELOG.md
|
261
260
|
- LICENSE
|
262
261
|
- README.md
|
263
262
|
files:
|
264
|
-
- CHANGELOG.md
|
265
263
|
- LICENSE
|
266
264
|
- README.md
|
267
265
|
- bin/hiptest-publisher
|
@@ -761,7 +759,7 @@ homepage: https://cucumber.io
|
|
761
759
|
licenses:
|
762
760
|
- MIT
|
763
761
|
metadata: {}
|
764
|
-
post_install_message:
|
762
|
+
post_install_message:
|
765
763
|
rdoc_options: []
|
766
764
|
require_paths:
|
767
765
|
- lib
|
@@ -776,9 +774,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
776
774
|
- !ruby/object:Gem::Version
|
777
775
|
version: '0'
|
778
776
|
requirements: []
|
779
|
-
|
780
|
-
|
781
|
-
signing_key:
|
777
|
+
rubygems_version: 3.0.3.1
|
778
|
+
signing_key:
|
782
779
|
specification_version: 4
|
783
780
|
summary: Export your tests from CucumberStudio into executable tests.
|
784
781
|
test_files: []
|
data/CHANGELOG.md
DELETED
@@ -1,310 +0,0 @@
|
|
1
|
-
HipTest Publisher Changelog
|
2
|
-
===========================
|
3
|
-
|
4
|
-
[Unreleased]
|
5
|
-
------------
|
6
|
-
|
7
|
-
- Add `--overriden-language-configs` command line option (#205 by tenpaiyomi)
|
8
|
-
- Add support for Cucumber Expression in Java and Groovy (#205 by tenpaiyomi)
|
9
|
-
- Fix possible duplication of actionwords in export (#232 by tenpaiyomi)
|
10
|
-
- Breaking change: Export with cucumber expressions are now the default when specifying `--language=cucumber` for TypeScript, Java, and GroovySet. Use `--language=cucumber_legacy` to keep previous export behavior (#205 by tenpaiyomi) (#205 by tenpaiyomi)
|
11
|
-
- Breaking change: Drop support for ruby 2.3 and ruby 2.4 as they have reached end of life
|
12
|
-
- Rename HipTest as CucumberStudio in user messages
|
13
|
-
- Properly escape new lines in datatables (#109)
|
14
|
-
|
15
|
-
[2.4.0]
|
16
|
-
-------
|
17
|
-
|
18
|
-
- Add support for asynchronous export of projects from Cucumber Studio
|
19
|
-
|
20
|
-
[2.3.1]
|
21
|
-
-------
|
22
|
-
|
23
|
-
- `--indentation` option is now available to customize the indentation of the output
|
24
|
-
|
25
|
-
[2.3.0]
|
26
|
-
-------
|
27
|
-
|
28
|
-
- No test uids in datatables by default for feature files, add them when test run is used (#201)
|
29
|
-
|
30
|
-
[2.2.0]
|
31
|
-
-------
|
32
|
-
|
33
|
-
- Add support for Cucumber expressions w/ Typescript ([#173](https://github.com/hiptest/hiptest-publisher/pull/173) [#184](https://github.com/hiptest/hiptest-publisher/pull/184) [tenpaiyomi])
|
34
|
-
|
35
|
-
[2.1.0]
|
36
|
-
-------
|
37
|
-
|
38
|
-
- Do not try to colorize output when not in a `tty`
|
39
|
-
|
40
|
-
- Add `--[no-]color` option to allow disabling colored output
|
41
|
-
|
42
|
-
[2.0.0]
|
43
|
-
-------
|
44
|
-
|
45
|
-
- Deprecate support for Ruby 2.3 ([Ruby 2.3 EOL](https://www.ruby-lang.org/en/news/2019/03/31/support-of-ruby-2-3-has-ended/))
|
46
|
-
|
47
|
-
- Drop Ruby 2.2 support.
|
48
|
-
|
49
|
-
- Update Nokogiri to 1.10
|
50
|
-
|
51
|
-
[1.31.0]
|
52
|
-
--------
|
53
|
-
|
54
|
-
- Follow redirections when doing HTTP requests.
|
55
|
-
|
56
|
-
[1.30.0]
|
57
|
-
--------
|
58
|
-
|
59
|
-
- Upgrade `ruby-handlebars` to 0.4. `each` and `join` helpers now support the `as` notation.
|
60
|
-
|
61
|
-
- Add support for Swift/XCTest ([#134](https://github.com/hiptest/hiptest-publisher/pull/134) [bangroot])
|
62
|
-
|
63
|
-
- Add cache for the XML downloaded from CucumberStudio.
|
64
|
-
By default, files will be valid for 60 seconds but can be changed by using `--cache-duration=120` for example.
|
65
|
-
|
66
|
-
[1.29.2]
|
67
|
-
--------
|
68
|
-
|
69
|
-
- Fix escaping in string literals for Java and C# ([#157](https://github.com/hiptest/hiptest-publisher/issues/157) - [hiptest#195](https://github.com/hiptest/hiptest-issue-tracker/issues/195))
|
70
|
-
|
71
|
-
[1.29.1]
|
72
|
-
--------
|
73
|
-
|
74
|
-
- Allow any characters for the meta value ([#155](https://github.com/hiptest/hiptest-publisher/issues/155))
|
75
|
-
|
76
|
-
|
77
|
-
[1.29.0]
|
78
|
-
--------
|
79
|
-
|
80
|
-
- Make `rake install` work with ruby 2.6
|
81
|
-
- `--parameter-delimiter` option now accepts empty string
|
82
|
-
|
83
|
-
[1.28.0]
|
84
|
-
--------
|
85
|
-
|
86
|
-
- Fix bug where parameter-delimiter value was not recognized in command line ([#147](https://github.com/hiptest/hiptest-publisher/issues/147))
|
87
|
-
- Add option --http-proxy to specify proxy to use ([#132](https://github.com/hiptest/hiptest-publisher/issues/132))
|
88
|
-
|
89
|
-
[1.27.1]
|
90
|
-
--------
|
91
|
-
|
92
|
-
- Add CodeceptJS to language list in OptionsParser.languages
|
93
|
-
|
94
|
-
[1.27.0]
|
95
|
-
--------
|
96
|
-
|
97
|
-
- Enable accessing scenario tags in datasets
|
98
|
-
([#142](https://github.com/hiptest/hiptest-publisher/pull/142) [nono0481])
|
99
|
-
|
100
|
-
- Added support for CodeceptJS testing framework
|
101
|
-
([#130](https://github.com/hiptest/hiptest-publisher/pull/130) [DavertMik])
|
102
|
-
|
103
|
-
[1.26.0]
|
104
|
-
--------
|
105
|
-
|
106
|
-
- Shared actionwords handling for Cucumber/Typescript
|
107
|
-
|
108
|
-
[1.25.0]
|
109
|
-
--------
|
110
|
-
|
111
|
-
- Shared actionwords handling for Behave
|
112
|
-
|
113
|
-
[1.24.0]
|
114
|
-
--------
|
115
|
-
|
116
|
-
- Add #case, #when and #when_includes handlebars helpers
|
117
|
-
- Modify #if_includes handlebars helper to work with strings
|
118
|
-
|
119
|
-
[1.23.5]
|
120
|
-
--------
|
121
|
-
|
122
|
-
- Load i18n path also when used as a library
|
123
|
-
|
124
|
-
[1.23.4]
|
125
|
-
--------
|
126
|
-
|
127
|
-
- Add I18n to enable localizing (and clearing the code)
|
128
|
-
|
129
|
-
[1.23.3]
|
130
|
-
--------
|
131
|
-
|
132
|
-
- Update multipart-post to 2.1.1 to handle issues with Ruby < 2.5
|
133
|
-
(see: https://github.com/socketry/multipart-post/issues/61)
|
134
|
-
|
135
|
-
[1.23.2]
|
136
|
-
--------
|
137
|
-
|
138
|
-
- Force Nokogiri < 1.10 to keep support for Ruby 2.2
|
139
|
-
- Add deprecation notifications for Ruby 2.2
|
140
|
-
|
141
|
-
[1.23.1]
|
142
|
-
--------
|
143
|
-
|
144
|
-
- Handle new shared actionword architecture
|
145
|
-
|
146
|
-
[1.22.0]
|
147
|
-
--------
|
148
|
-
|
149
|
-
- Add support for Cucumber/Typescript
|
150
|
-
- Unlock Nokogiri update to 1.9.1
|
151
|
-
|
152
|
-
[1.21.0]
|
153
|
-
--------
|
154
|
-
|
155
|
-
- Add option --execution-environment to push results in the specified execution environment name
|
156
|
-
|
157
|
-
[1.20.0]
|
158
|
-
--------
|
159
|
-
|
160
|
-
- Add --meta option to add more flexibility in code generation
|
161
|
-
(see: https://github.com/hiptest/hiptest-publisher/blob/master/docs/Using%20meta%20data.md#using-meta-data)
|
162
|
-
|
163
|
-
[1.19.3]
|
164
|
-
--------
|
165
|
-
|
166
|
-
- Do not leave trailing whitespaces with {{comment}} helper
|
167
|
-
|
168
|
-
[1.19.2]
|
169
|
-
--------
|
170
|
-
- Fix description in Gherkin exports
|
171
|
-
|
172
|
-
[1.19.1]
|
173
|
-
--------
|
174
|
-
- Fix description in Gherkin exports
|
175
|
-
|
176
|
-
[1.19.0]
|
177
|
-
--------
|
178
|
-
- Do not comment description in Gherkin exports
|
179
|
-
|
180
|
-
[1.18.1]
|
181
|
-
--------
|
182
|
-
- Show message when calling an actionword using an unknown UID
|
183
|
-
|
184
|
-
[1.18.0]
|
185
|
-
--------
|
186
|
-
- Add option [no-]parent-folders-tags to choose if parent tags are rendered in feature files
|
187
|
-
|
188
|
-
[1.17.2]
|
189
|
-
--------
|
190
|
-
- Fix UIDCall handling for shared actionwords
|
191
|
-
|
192
|
-
[1.17.1]
|
193
|
-
--------
|
194
|
-
- update version number
|
195
|
-
|
196
|
-
[1.16.6]
|
197
|
-
--------
|
198
|
-
- Add the if_includes handlebars helper
|
199
|
-
- Add options "parameter-delimiter" allowing to remove quotes around parameters in Gherkin export
|
200
|
-
(or replace it by anything else in fact)
|
201
|
-
|
202
|
-
[1.16.5]
|
203
|
-
--------
|
204
|
-
- Fix UIDCall handling for behat
|
205
|
-
|
206
|
-
[1.16.4]
|
207
|
-
--------
|
208
|
-
- Handling tags for shared actionwords
|
209
|
-
|
210
|
-
[1.16.3]
|
211
|
-
--------
|
212
|
-
- Fix behat rendering of shared actionwords
|
213
|
-
|
214
|
-
[1.16.2]
|
215
|
-
--------
|
216
|
-
- Remove unnecessary templates for cucumber/groovy
|
217
|
-
|
218
|
-
[1.16.0]
|
219
|
-
--------
|
220
|
-
- Shared actionwords handling for behat
|
221
|
-
|
222
|
-
[1.15.0]
|
223
|
-
--------
|
224
|
-
- Shared actionwords handling for groovy/spock
|
225
|
-
|
226
|
-
[1.14.0]
|
227
|
-
--------
|
228
|
-
|
229
|
-
- Shared actionwords handling for cucumber/groovy
|
230
|
-
|
231
|
-
[1.13.0]
|
232
|
-
--------
|
233
|
-
|
234
|
-
- Add Cucumber/Groovy support
|
235
|
-
([#54](https://github.com/hiptest/hiptest-publisher/issues/54))
|
236
|
-
|
237
|
-
[1.12.0]
|
238
|
-
--------
|
239
|
-
|
240
|
-
- Add JBehave support
|
241
|
-
([#38](https://github.com/hiptest/hiptest-publisher/issues/38))
|
242
|
-
|
243
|
-
- Add option --with-dataset-names
|
244
|
-
([#105](https://github.com/hiptest/hiptest-publisher/issues/105))
|
245
|
-
|
246
|
-
- Reorder steps by regexp length for Behave
|
247
|
-
([#104](https://github.com/hiptest/hiptest-publisher/issues/104))
|
248
|
-
|
249
|
-
|
250
|
-
<!-- List of releases -->
|
251
|
-
[Unreleased]: https://github.com/hiptest/hiptest-publisher/compare/v2.4.0...master
|
252
|
-
[2.4.0]: https://github.com/hiptest/hiptest-publisher/compare/v2.3.1...v2.4.0
|
253
|
-
[2.3.1]: https://github.com/hiptest/hiptest-publisher/compare/v2.3.0...v2.3.1
|
254
|
-
[2.3.0]: https://github.com/hiptest/hiptest-publisher/compare/v2.2.0...v2.3.0
|
255
|
-
[2.2.0]: https://github.com/hiptest/hiptest-publisher/compare/v2.1.0...v2.2.0
|
256
|
-
[2.1.0]: https://github.com/hiptest/hiptest-publisher/compare/v2.0.0...v2.1.0
|
257
|
-
[2.0.0]: https://github.com/hiptest/hiptest-publisher/compare/v1.31.0...v2.0.0
|
258
|
-
[1.31.0]: https://github.com/hiptest/hiptest-publisher/compare/v1.30.0...v1.31.0
|
259
|
-
[1.30.0]: https://github.com/hiptest/hiptest-publisher/compare/v1.29.2...v1.30.0
|
260
|
-
[1.29.2]: https://github.com/hiptest/hiptest-publisher/compare/v1.29.1...v1.29.2
|
261
|
-
[1.29.1]: https://github.com/hiptest/hiptest-publisher/compare/v1.29.0...v1.29.1
|
262
|
-
[1.29.0]: https://github.com/hiptest/hiptest-publisher/compare/v1.28.0...v1.29.0
|
263
|
-
[1.28.0]: https://github.com/hiptest/hiptest-publisher/compare/v1.27.1...v1.28.0
|
264
|
-
[1.27.1]: https://github.com/hiptest/hiptest-publisher/compare/v1.27.0...v1.27.1
|
265
|
-
[1.27.0]: https://github.com/hiptest/hiptest-publisher/compare/v1.26.0...v1.27.0
|
266
|
-
[1.26.0]: https://github.com/hiptest/hiptest-publisher/compare/v1.25.0...v1.26.0
|
267
|
-
[1.25.0]: https://github.com/hiptest/hiptest-publisher/compare/v1.24.0...v1.25.0
|
268
|
-
[1.24.0]: https://github.com/hiptest/hiptest-publisher/compare/v1.23.5...v1.24.0
|
269
|
-
[1.23.5]: https://github.com/hiptest/hiptest-publisher/compare/v1.23.4...v1.23.5
|
270
|
-
[1.23.4]: https://github.com/hiptest/hiptest-publisher/compare/v1.23.3...v1.23.4
|
271
|
-
[1.23.3]: https://github.com/hiptest/hiptest-publisher/compare/v1.23.2...v1.23.3
|
272
|
-
[1.23.2]: https://github.com/hiptest/hiptest-publisher/compare/v1.23.1...v1.23.2
|
273
|
-
[1.23.1]: https://github.com/hiptest/hiptest-publisher/compare/v1.22.0...v1.23.1
|
274
|
-
[1.22.0]: https://github.com/hiptest/hiptest-publisher/compare/v1.21.0...v1.22.0
|
275
|
-
[1.21.0]: https://github.com/hiptest/hiptest-publisher/compare/v1.20.0...v1.21.0
|
276
|
-
[1.20.0]: https://github.com/hiptest/hiptest-publisher/compare/v1.19.3...v1.20.0
|
277
|
-
[1.19.3]: https://github.com/hiptest/hiptest-publisher/compare/v1.19.2...v1.19.3
|
278
|
-
[1.19.2]: https://github.com/hiptest/hiptest-publisher/compare/v1.19.1...v1.19.2
|
279
|
-
[1.19.1]: https://github.com/hiptest/hiptest-publisher/compare/v1.19.0...v1.19.1
|
280
|
-
[1.19.0]: https://github.com/hiptest/hiptest-publisher/compare/v1.18.1...v1.19.0
|
281
|
-
[1.18.1]: https://github.com/hiptest/hiptest-publisher/compare/v1.18.0...v1.18.1
|
282
|
-
[1.18.0]: https://github.com/hiptest/hiptest-publisher/compare/v1.17.2...v1.18.0
|
283
|
-
[1.17.2]: https://github.com/hiptest/hiptest-publisher/compare/v1.17.1...v1.17.2
|
284
|
-
[1.17.1]: https://github.com/hiptest/hiptest-publisher/compare/v1.16.6...v1.17.1
|
285
|
-
[1.16.6]: https://github.com/hiptest/hiptest-publisher/compare/v1.16.5...v1.16.6
|
286
|
-
[1.16.5]: https://github.com/hiptest/hiptest-publisher/compare/v1.16.4...v1.16.5
|
287
|
-
[1.16.4]: https://github.com/hiptest/hiptest-publisher/compare/v1.16.3...v1.16.4
|
288
|
-
[1.16.3]: https://github.com/hiptest/hiptest-publisher/compare/v1.16.2...v1.16.3
|
289
|
-
[1.16.2]: https://github.com/hiptest/hiptest-publisher/compare/v1.16.0...v1.16.2
|
290
|
-
[1.16.0]: https://github.com/hiptest/hiptest-publisher/compare/v1.15.0...v1.16.0
|
291
|
-
[1.15.0]: https://github.com/hiptest/hiptest-publisher/compare/v1.14.0...v1.15.0
|
292
|
-
[1.14.0]: https://github.com/hiptest/hiptest-publisher/compare/v1.13.0...v1.14.0
|
293
|
-
[1.13.0]: https://github.com/hiptest/hiptest-publisher/compare/v1.12.0...v1.13.0
|
294
|
-
[1.12.0]: https://github.com/hiptest/hiptest-publisher/compare/v1.11.1...v1.12.0
|
295
|
-
|
296
|
-
|
297
|
-
<!-- List of contributors -->
|
298
|
-
[atulhm]: https://github.com/atulhm
|
299
|
-
[bangroot]: https://github.com/bangroot
|
300
|
-
[ClaudiaJ]: https://github.com/ClaudiaJ
|
301
|
-
[daniel-kun]: https://github.com/daniel-kun
|
302
|
-
[DavertMik]: https://github.com/DavertMik
|
303
|
-
[etorreborre]: https://github.com/etorreborre
|
304
|
-
[Jesterovskiy]: https://github.com/Jesterovskiy
|
305
|
-
[lostiniceland]: https://github.com/lostiniceland
|
306
|
-
[mhfrantz]: https://github.com/mhfrantz
|
307
|
-
[nono0481]: https://github.com/nono0481
|
308
|
-
[tenpaiyomi]: https://github.com/tenpaiyomi
|
309
|
-
[tikolakin]: https://github.com/tikolakin
|
310
|
-
[weeksghost]: https://github.com/weeksghost
|