fastlane-plugin-aws_device_farm 0.3.23 → 0.3.24
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: 70ca38199754fc9a977576361b8cd9591177da31eaf7f21622e69f21323b5d8a
|
|
4
|
+
data.tar.gz: 670199ee0e1592bb653e89cb6dda4562da9fee31dc5122260dc472f5cac783aa
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 142fca415e7a81535525a02e10a0597b5141af82e9cceb4df092c8a4b450e5a71e27474247184d992cec217ef009d0edb780d6ee10521dbe3b5d4fa803a65f3b
|
|
7
|
+
data.tar.gz: 67504e83a62b90713ebe61a2e01fadede9f19a243cacf1315acadc58037f2c009261c8807eaf6bdaa50bce428da1a0c3ef23548e3b1d9b8ef8a1662945a88786
|
data/README.md
CHANGED
|
@@ -109,6 +109,7 @@ The plugin also exposes two ENV variables in case you want to make additional ca
|
|
|
109
109
|
| artifact | `false` | Do you want to download Artifact? | Boolean | |
|
|
110
110
|
| artifact_output_dir | `./test_outputs` | Artifact output directory | String | |
|
|
111
111
|
| artifact_types | `[]` | Specify the artifact types one wants to download | Array | |
|
|
112
|
+
| test_parameters | |The test's parameters, such as test framework parameters and fixture settings. Parameters are represented by name-value pairs of strings. | Hash | |
|
|
112
113
|
|
|
113
114
|
|
|
114
115
|
Possible types see: http://docs.aws.amazon.com/sdkforruby/api/Aws/DeviceFarm/Client.html#create_upload-instance_method
|
|
@@ -356,6 +356,12 @@ module Fastlane
|
|
|
356
356
|
type: Hash,
|
|
357
357
|
optional: true,
|
|
358
358
|
),
|
|
359
|
+
FastlaneCore::ConfigItem.new(
|
|
360
|
+
key: :test_parameters,
|
|
361
|
+
description: 'The test parameters',
|
|
362
|
+
type: Hash,
|
|
363
|
+
optional: true,
|
|
364
|
+
),
|
|
359
365
|
]
|
|
360
366
|
end
|
|
361
367
|
|
|
@@ -423,6 +429,11 @@ module Fastlane
|
|
|
423
429
|
def self.schedule_run(name, project, device_pool, upload, test_upload, type, params)
|
|
424
430
|
# Prepare the test hash depening if you passed the test apk.
|
|
425
431
|
test_hash = { type: 'BUILTIN_FUZZ' }
|
|
432
|
+
|
|
433
|
+
if params[:test_parameters]
|
|
434
|
+
test_hash[:parameters] = params[:test_parameters]
|
|
435
|
+
end
|
|
436
|
+
|
|
426
437
|
if test_upload
|
|
427
438
|
if params[:test_type]
|
|
428
439
|
test_hash[:type] = params[:test_type]
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fastlane-plugin-aws_device_farm
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.24
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Helmut Januschka
|
|
8
|
-
autorequire:
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2022-07-07 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk
|
|
@@ -108,7 +108,7 @@ dependencies:
|
|
|
108
108
|
- - ">="
|
|
109
109
|
- !ruby/object:Gem::Version
|
|
110
110
|
version: '0'
|
|
111
|
-
description:
|
|
111
|
+
description:
|
|
112
112
|
email: helmut@januschka.com
|
|
113
113
|
executables: []
|
|
114
114
|
extensions: []
|
|
@@ -125,7 +125,7 @@ homepage: https://github.com/hjanuschka/fastlane-plugin-aws_device_farm
|
|
|
125
125
|
licenses:
|
|
126
126
|
- MIT
|
|
127
127
|
metadata: {}
|
|
128
|
-
post_install_message:
|
|
128
|
+
post_install_message:
|
|
129
129
|
rdoc_options: []
|
|
130
130
|
require_paths:
|
|
131
131
|
- lib
|
|
@@ -140,9 +140,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
140
140
|
- !ruby/object:Gem::Version
|
|
141
141
|
version: '0'
|
|
142
142
|
requirements: []
|
|
143
|
-
rubyforge_project:
|
|
144
|
-
rubygems_version: 2.7.
|
|
145
|
-
signing_key:
|
|
143
|
+
rubyforge_project:
|
|
144
|
+
rubygems_version: 2.7.7
|
|
145
|
+
signing_key:
|
|
146
146
|
specification_version: 4
|
|
147
147
|
summary: Run UI Tests on AWS Devicefarm
|
|
148
148
|
test_files: []
|