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: 5c173cb27096b637d03769ad277d755ff07ffd5e12616bd760a35862a91d9eac
4
- data.tar.gz: 193bf0d42adced2d15f63f83f2ffd8ef96c151ece5ab902d4da2791a8596003b
3
+ metadata.gz: 70ca38199754fc9a977576361b8cd9591177da31eaf7f21622e69f21323b5d8a
4
+ data.tar.gz: 670199ee0e1592bb653e89cb6dda4562da9fee31dc5122260dc472f5cac783aa
5
5
  SHA512:
6
- metadata.gz: 3583ac27a9f2b08e84b7c27e32dbb0bdf7b19ab4a3ce1ac36b6b1e6931aa02e4915b5e34c588a59befdf7b7e342ee87b9c91f63d1516074866b7a142351703d3
7
- data.tar.gz: 3085a0b7407122706d0baab2918b79934587e80c8c8093e339a4d04bd01e542486c215dbd3b95c98014f85f45d05b095c5ee9b9f0298d54e2ad78a750675554a
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]
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module AwsDeviceFarm
3
- VERSION = "0.3.23"
3
+ VERSION = "0.3.24"
4
4
  end
5
5
  end
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.23
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: 2021-10-15 00:00:00.000000000 Z
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.9
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: []