fastlane-plugin-aws_device_farm 0.3.11.pre.alpha.pre.98 → 0.3.11.pre.alpha.pre.101

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: 299ad319fa5767c000788f331b2b916a410d1827f15b8fcc0145d8980b6608c7
4
- data.tar.gz: c46d6e611852b9dc71ee34359bf4ba13f5a3369c401306853bbc5f6275b8aad3
3
+ metadata.gz: c892d34c914e6f2212f4fa206ee53b413624d0c85c33541b45af28d3fc30f259
4
+ data.tar.gz: 35ce5cba0258e861278df6ad5be53e9a298422a8ecfd0f5e21cdca488f747b7c
5
5
  SHA512:
6
- metadata.gz: dd9b318893a757012337ed7ab45300c89f7d1176f538a03591ec84a20648775a104a28aa1a7deb3c5c2b9c0074d235e94835c63077783366e27150ad6067a232
7
- data.tar.gz: 184e832024081238a3320f64832802a95fa52c7598ac7603052c09b4959855d8b5d9daa8bd28c1ac24ca121abc8c4bdb4845728fa276985b127f07a5b7aa9d1a
6
+ metadata.gz: d102e2ad7ae440cdee99a725158e8f8bb3ab325084387e0dfca7946dc7327477c85ab3d987a2e8d3d16343f59f6da215f1740b955e0bf67e2d97e44ab88de25b
7
+ data.tar.gz: 0cb62ddd147e7a33e3c1fa2577bc69c0d89ae80ccae26961fdafd512906c0f5ecbf090a1b76585eefd88cf9c4282dfec0f7e98f83ee02ad0536283c001a5dfc2
@@ -36,7 +36,7 @@ module Fastlane
36
36
  else
37
37
  if type == "ANDROID_APP"
38
38
  test_upload = create_project_upload project, test_path, 'INSTRUMENTATION_TEST_PACKAGE'
39
- elsif params[:is_unit_test] == true
39
+ elsif params[:test_type] == 'XCTEST'
40
40
  test_upload = create_project_upload project, test_path, 'XCTEST_TEST_PACKAGE'
41
41
  else
42
42
  test_upload = create_project_upload project, test_path, 'XCTEST_UI_TEST_PACKAGE'
@@ -358,8 +358,6 @@ module Fastlane
358
358
  else
359
359
  if type == "ANDROID_APP"
360
360
  test_hash[:type] = 'INSTRUMENTATION'
361
- elsif params[:is_unit_test] == true
362
- test_hash[:type] = 'XCTEST'
363
361
  else
364
362
  test_hash[:type] = 'XCTEST_UI'
365
363
  end
@@ -53,17 +53,6 @@ module Fastlane
53
53
  is_string: true,
54
54
  optional: true,
55
55
  default_value: "Development"
56
- ),
57
- FastlaneCore::ConfigItem.new(
58
- key: :is_unit_test,
59
- env_name: 'FL_AWS_DEVICE_FARM_IS_UNIT_TEST',
60
- description: 'Specify is_unit_test to true if this is an iOS unit test',
61
- is_string: false,
62
- optional: true,
63
- default_value: false,
64
- verify_block: proc do |value|
65
- UI.user_error!("Please pass a valid value for is_unit_test. Use one of the following: true, false") unless value.kind_of?(TrueClass) || value.kind_of?(FalseClass)
66
- end
67
56
  )
68
57
  ]
69
58
  end
metadata CHANGED
@@ -1,7 +1,7 @@
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.11.pre.alpha.pre.98
4
+ version: 0.3.11.pre.alpha.pre.101
5
5
  platform: ruby
6
6
  authors:
7
7
  - Helmut Januschka