rainforest-cli 1.12.1 → 1.12.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/README.md +6 -6
- data/lib/rainforest_cli/test_parser.rb +1 -0
- data/lib/rainforest_cli/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1f59142b19a1c8a1acead8496c363abac25f1e26
|
4
|
+
data.tar.gz: b67f1ccf9a7fc3dbc52762488b1e159048696643
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 38ad9bb4c69e36ffa54e3e31b597ae3c47adda976579248d504df2781a2c3663464b2d829946d75cc7b394586dfe60df985a668e5b3ccc9e66a8735444def5a7
|
7
|
+
data.tar.gz: b68ddbb6e9ed0ac1e38a1bb954bed905213ff0835e22fca939e92cdca2b23632bc5f453886129eb5667d40a3d771653dbebb3dfd97524f06819bf079f5df56d5
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,9 @@
|
|
1
1
|
# Rainforest CLI Changelog
|
2
2
|
|
3
|
+
## 1.12.2 - 23rd February 2017
|
4
|
+
- Default `start_uri` attribute to "/" if omitted from RFML test.
|
5
|
+
(ec6049407ec635b7f7bc4f8da516ccddad2b78b3, @epaulet)
|
6
|
+
|
3
7
|
## 1.12.1 - 7th February 2017
|
4
8
|
- Check columns returned from API before uploading rows when creating generators.
|
5
9
|
(458fdf5bf3ba28588dfb48d1253192ba477ac7ae, @epaulet)
|
data/README.md
CHANGED
@@ -246,7 +246,7 @@ Run tests in specified folder.
|
|
246
246
|
<pre>--folder <b>ID</b></pre>
|
247
247
|
|
248
248
|
###Environment-ID
|
249
|
-
|
249
|
+
Run your tests using this environment. Otherwise it will use your default environment
|
250
250
|
<pre>--environment-id <b>ID</b></pre>
|
251
251
|
|
252
252
|
###Crowd
|
@@ -265,19 +265,19 @@ Wait for an existing run to finish instead of starting a new one, and exit with
|
|
265
265
|
<pre>--wait <b>RUN_ID</b></pre>
|
266
266
|
|
267
267
|
###Fail-fast
|
268
|
-
|
268
|
+
Fail the build (by exiting with a status of zero) as soon as a test is confirmed failed. If you don't pass this ``rainforest`` will wait until 100% of the run is complete before failing your build. Note, this _only_ fails your build - this does not abort your rainforest run. Use with --fg.
|
269
269
|
<pre>--fail-fast</pre>
|
270
|
-
###Custom URL
|
271
270
|
|
272
|
-
|
271
|
+
###Custom URL
|
272
|
+
Use a custom url for this run. Example use case: an ad-hoc QA environment with Fourchette. You will need to specify a site_id too for this to work. Note that we will be creating a new environment for this particular run.
|
273
273
|
<pre>--custom-url</pre>
|
274
274
|
|
275
275
|
###Git-trigger
|
276
|
-
|
276
|
+
Only trigger a run when the last commit (for a git repo in the current working directory) has contains @rainforest and a list of one or more tags. E.g. "Fix checkout process. @rainforest #checkout" would trigger a run for everything tagged checkout. This over-rides --tag and any tests specified. If no @rainforest is detected it will exit 0.
|
277
277
|
<pre>--git-trigger</pre>
|
278
278
|
|
279
279
|
###Description "CI automatic run"
|
280
|
-
|
280
|
+
Add an arbitrary description for the run.
|
281
281
|
<pre>--description "CI automatic run"</pre>
|
282
282
|
|
283
283
|
###Embed-tests
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rainforest-cli
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.12.
|
4
|
+
version: 1.12.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Russell Smith
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2017-02
|
12
|
+
date: 2017-03-02 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: httparty
|