fastlane-plugin-aws_device_farm 0.3.12 → 0.3.13.pre.alpha.pre.108

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 18273fe44f10baf50d627344c3b7f3246df8ff9137d3d1ad0df75e1706d9667a
4
- data.tar.gz: a481dc63ba2e74fbe1efb89630f358602ac28477112724aeb12cdaa86b13334b
3
+ metadata.gz: 87472022d17f66ec2cfdf8c48711a6bd653aa715a07316a45532a24b6dd4aeac
4
+ data.tar.gz: c2ec4b24142686ce18dc47503d168256cb9573ca20c16a9bbd1224c80c5725e7
5
5
  SHA512:
6
- metadata.gz: b3392adfb632c3bf214d9b9625f7c5cc586ccd74eb30dce4835582abf91cd833530ec444ce684bd9cb497f0b935916c35812fcabd93bc4773aea968672af0d91
7
- data.tar.gz: 9d3432a3e8d0684777a94c8242d7778811cf35b906620d29fca8c0ff04f3015821a28fe4d69358baf1c64fa4be7aa5cac63800895c90cc51f551a33997294a21
6
+ metadata.gz: 7ee5f3d98548da5c992ac09e0a746ce7a40fdbb610e355ba6e8d1c37509fab9ae69151a5f47fa53d0f77e6b8b9ea92c64c380bbc52fe6b19491066077faca81d
7
+ data.tar.gz: 40c133c28dbac5ec1f024ca169907b52c7d51685bc014cce9a04f210c4ecaa49d085ee53b8f15dd956a6f38585ad8586026675ec78bb6f6cbb7d564fb6ad3244
data/README.md CHANGED
@@ -98,6 +98,7 @@ 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
101
102
 
102
103
  Possible types see: http://docs.aws.amazon.com/sdkforruby/api/Aws/DeviceFarm/Client.html#create_upload-instance_method
103
104
 
@@ -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,6 +283,14 @@ 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
286
294
  )
287
295
  ]
288
296
  end
@@ -396,7 +404,9 @@ module Fastlane
396
404
  def self.wait_for_run(project, run)
397
405
  while run.status != 'COMPLETED'
398
406
  sleep POLLING_INTERVAL
399
- print '.'
407
+ if params[:print_waiting_periods]
408
+ print '.'
409
+ end
400
410
  run = fetch_run_status run
401
411
  end
402
412
  UI.message "The run ended with result #{run.result}."
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module AwsDeviceFarm
3
- VERSION = "0.3.12"
3
+ VERSION = "0.3.13"
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.12
4
+ version: 0.3.13.pre.alpha.pre.108
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-09-24 00:00:00.000000000 Z
11
+ date: 2019-12-04 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: '0'
141
+ version: 1.3.1
142
142
  requirements: []
143
143
  rubyforge_project:
144
- rubygems_version: 2.7.2
144
+ rubygems_version: 2.7.7
145
145
  signing_key:
146
146
  specification_version: 4
147
147
  summary: Run UI Tests on AWS Devicefarm