fastlane-plugin-aws_device_farm 0.3.12.pre.alpha.pre.107 → 0.3.12

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: 06653166e78653cdebfb99731156524995161f2e4d58124ecf221014d8d62632
4
- data.tar.gz: 773a75ce1a6d468863fb3a5a2eb4ae75cafb7643603d6d9fc48a83ec3ee8a341
3
+ metadata.gz: 18273fe44f10baf50d627344c3b7f3246df8ff9137d3d1ad0df75e1706d9667a
4
+ data.tar.gz: a481dc63ba2e74fbe1efb89630f358602ac28477112724aeb12cdaa86b13334b
5
5
  SHA512:
6
- metadata.gz: 673820f98d4b6cb7204b0135430972698aa95d4569f6b95f4fcb51bf2d0279b63f6a2b8505c01c03e4fa76b386269b6121301e0a8628288f1c2fca47790aa160
7
- data.tar.gz: 24afe19d58b9938b674ecacb9495fcb945571e5b49252634914511226af3aade493e8587b371a9e7c19ea07f9697737d3704b4c28274e013854a1b913a75feb1
6
+ metadata.gz: b3392adfb632c3bf214d9b9625f7c5cc586ccd74eb30dce4835582abf91cd833530ec444ce684bd9cb497f0b935916c35812fcabd93bc4773aea968672af0d91
7
+ data.tar.gz: 9d3432a3e8d0684777a94c8242d7778811cf35b906620d29fca8c0ff04f3015821a28fe4d69358baf1c64fa4be7aa5cac63800895c90cc51f551a33997294a21
data/README.md CHANGED
@@ -98,7 +98,6 @@ The plugin also exposes two ENV variables in case you want to make additional ca
98
98
  | test_spec | | Define the device farm custom TestSpec ARN to use (can be obtained using the AWS CLI `devicefarm list-uploads` command) | String |
99
99
  | filter | | Define a filter for your test run and only run the tests in the filter (note that using `test_spec` overrides the `filter` option) | String |
100
100
  | print_web_url_of_run | false | Do you want to print the web url of run in the messages? | Boolean |
101
- | print_waiting_periods | true | Do you want to print `.` while waiting for a run? | Boolean
102
101
 
103
102
  Possible types see: http://docs.aws.amazon.com/sdkforruby/api/Aws/DeviceFarm/Client.html#create_upload-instance_method
104
103
 
@@ -38,7 +38,7 @@ module Fastlane
38
38
  test_upload = create_project_upload project, test_path, 'INSTRUMENTATION_TEST_PACKAGE'
39
39
  elsif params[:test_type] == 'XCTEST'
40
40
  test_upload = create_project_upload project, test_path, 'XCTEST_TEST_PACKAGE'
41
- else
41
+ else
42
42
  test_upload = create_project_upload project, test_path, 'XCTEST_UI_TEST_PACKAGE'
43
43
  end
44
44
  end
@@ -283,14 +283,6 @@ module Fastlane
283
283
  is_string: false,
284
284
  optional: true,
285
285
  default_value: false
286
- ),
287
- FastlaneCore::ConfigItem.new(
288
- key: :print_waiting_periods,
289
- env_name: 'FL_AWS_DEVICE_FARM_PRINT_WAITING_PERIODS',
290
- description: 'Prints a period while waiting for tests to complete.',
291
- is_string: false,
292
- optional: true,
293
- default_value: true
294
286
  )
295
287
  ]
296
288
  end
@@ -404,9 +396,7 @@ module Fastlane
404
396
  def self.wait_for_run(project, run)
405
397
  while run.status != 'COMPLETED'
406
398
  sleep POLLING_INTERVAL
407
- if params[:print_waiting_periods]
408
- print '.'
409
- end
399
+ print '.'
410
400
  run = fetch_run_status run
411
401
  end
412
402
  UI.message "The run ended with result #{run.result}."
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.12.pre.alpha.pre.107
4
+ version: 0.3.12
5
5
  platform: ruby
6
6
  authors:
7
7
  - Helmut Januschka
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-12-04 00:00:00.000000000 Z
11
+ date: 2019-09-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk
@@ -136,12 +136,12 @@ required_ruby_version: !ruby/object:Gem::Requirement
136
136
  version: '0'
137
137
  required_rubygems_version: !ruby/object:Gem::Requirement
138
138
  requirements:
139
- - - ">"
139
+ - - ">="
140
140
  - !ruby/object:Gem::Version
141
- version: 1.3.1
141
+ version: '0'
142
142
  requirements: []
143
143
  rubyforge_project:
144
- rubygems_version: 2.7.7
144
+ rubygems_version: 2.7.2
145
145
  signing_key:
146
146
  specification_version: 4
147
147
  summary: Run UI Tests on AWS Devicefarm