geordi 6.0.0.pre.rc1 → 6.0.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 +7 -11
- data/geordi.gemspec +1 -1
- data/lib/geordi/commands/cucumber.rb +7 -11
- data/lib/geordi/version.rb +1 -1
- metadata +8 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 972d947bfb273cec9f5bb3a586ab1ead5021b63466b4322a42b047947c846c45
|
4
|
+
data.tar.gz: fd796ff8f25567d340e24012929ffda3a54eafba1f3b98c718ccdfab4c7b213b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 889947c5d0139c9cc1fe4b7cc95ae7b08e83a0966696fce6e800db777c214544a6b8879b478e2999073c863405ff8e98a33c15ec4ad5ac73c92ab35f6084d1ae
|
7
|
+
data.tar.gz: c2771b0ca090e9d68557a6f8e9e1539a7b573f78caa7f66e6bdecc441710a4617fe390735a8f0b97304d10b5583d85b63dec13e7a0d74df421d41820262cd604
|
data/README.md
CHANGED
@@ -90,19 +90,15 @@ Run Cucumber features.
|
|
90
90
|
|
91
91
|
Example: `geordi cucumber features/authentication_feature:3`
|
92
92
|
|
93
|
-
Runs Cucumber with `bundle exec`, using parallel tests and with support for
|
94
|
-
failed scenarios.
|
93
|
+
Runs Cucumber with `bundle exec`, using parallel tests and with support for
|
94
|
+
re-running failed scenarios.
|
95
95
|
|
96
|
-
|
97
|
-
|
98
|
-
|
96
|
+
Any unknown option will be passed through to Cucumber, e.g. `--format=pretty`.
|
97
|
+
Make sure to connect option and value with an equals sign, i.e. have each option
|
98
|
+
a contiguous string.
|
99
99
|
|
100
|
-
|
101
|
-
|
102
|
-
sign, i.e. have each option a contiguous string.
|
103
|
-
|
104
|
-
- In order to limit processes in a parallel run, you can set an environment
|
105
|
-
variable like this: `PARALLEL_TEST_PROCESSORS=6 geordi cucumber`
|
100
|
+
In order to limit processes in a parallel run, you can set an environment
|
101
|
+
variable like this: `PARALLEL_TEST_PROCESSORS=6 geordi cucumber`
|
106
102
|
|
107
103
|
**Options**
|
108
104
|
- `-m, [--modified], [--no-modified]`: Run all modified features
|
data/geordi.gemspec
CHANGED
@@ -26,6 +26,6 @@ Gem::Specification.new do |spec|
|
|
26
26
|
spec.add_runtime_dependency 'thor', '~> 1'
|
27
27
|
|
28
28
|
spec.post_install_message = <<-ATTENTION
|
29
|
-
|
29
|
+
Support for sequential running of integration tests tagged with @solo has been dropped.
|
30
30
|
ATTENTION
|
31
31
|
end
|
@@ -2,19 +2,15 @@ desc 'cucumber [FILES and OPTIONS]', 'Run Cucumber features'
|
|
2
2
|
long_desc <<-LONGDESC
|
3
3
|
Example: `geordi cucumber features/authentication_feature:3`
|
4
4
|
|
5
|
-
Runs Cucumber with `bundle exec`, using parallel tests and with support for
|
6
|
-
failed scenarios.
|
5
|
+
Runs Cucumber with `bundle exec`, using parallel tests and with support for
|
6
|
+
re-running failed scenarios.
|
7
7
|
|
8
|
-
|
9
|
-
|
10
|
-
|
8
|
+
Any unknown option will be passed through to Cucumber, e.g. `--format=pretty`.
|
9
|
+
Make sure to connect option and value with an equals sign, i.e. have each option
|
10
|
+
a contiguous string.
|
11
11
|
|
12
|
-
|
13
|
-
|
14
|
-
sign, i.e. have each option a contiguous string.
|
15
|
-
|
16
|
-
- In order to limit processes in a parallel run, you can set an environment
|
17
|
-
variable like this: `PARALLEL_TEST_PROCESSORS=6 geordi cucumber`
|
12
|
+
In order to limit processes in a parallel run, you can set an environment
|
13
|
+
variable like this: `PARALLEL_TEST_PROCESSORS=6 geordi cucumber`
|
18
14
|
LONGDESC
|
19
15
|
|
20
16
|
option :modified, aliases: '-m', type: :boolean,
|
data/lib/geordi/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: geordi
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 6.0.0
|
4
|
+
version: 6.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Henning Koch
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-
|
11
|
+
date: 2021-06-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: thor
|
@@ -99,8 +99,10 @@ homepage: https://makandra.com
|
|
99
99
|
licenses:
|
100
100
|
- MIT
|
101
101
|
metadata: {}
|
102
|
-
post_install_message:
|
103
|
-
with @solo has been dropped
|
102
|
+
post_install_message: 'Support for sequential running of integration tests tagged
|
103
|
+
with @solo has been dropped.
|
104
|
+
|
105
|
+
'
|
104
106
|
rdoc_options: []
|
105
107
|
require_paths:
|
106
108
|
- lib
|
@@ -111,9 +113,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
111
113
|
version: 2.2.0
|
112
114
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
113
115
|
requirements:
|
114
|
-
- - "
|
116
|
+
- - ">="
|
115
117
|
- !ruby/object:Gem::Version
|
116
|
-
version:
|
118
|
+
version: '0'
|
117
119
|
requirements: []
|
118
120
|
rubygems_version: 3.0.3
|
119
121
|
signing_key:
|