fastlane-plugin-android_testlab_script_swit 0.1.46 → 0.1.48
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: 7bc5ff8e367bb7e4a13121230545cb68b21743b7dff69e18defb7409cf81cf49
|
|
4
|
+
data.tar.gz: 569d49c25d9572ed0fb10fcac9f866af979daa6d6a6bd7aca6baf1b37410fa52
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 551c49e33a7abbd7271b203fe1f555c4b040258874e067e80bad60dffcb545cf745de1bc169fa0b646c7a6c60c80b8a148eb7ebdae629f26c4783d2683b407e5
|
|
7
|
+
data.tar.gz: 35ba88a40793ce569c5f3ed663cd36042c753f22962ccea1530ac7f39fb7da7531e9986133cefcd951ed0f5a1e6e01361c8cfdae390bbccf13dfe95527884ff3
|
data/lib/fastlane/plugin/android_testlab_script_swit/actions/android_testlab_script_swit_action.rb
CHANGED
|
@@ -23,6 +23,8 @@ module Fastlane
|
|
|
23
23
|
# RoboScriptOption Add
|
|
24
24
|
robo_script_option = params[:robo_script_path].nil? ? "" : "--robo-script #{params[:robo_script_path]} "
|
|
25
25
|
|
|
26
|
+
UI.message(params[:gcloud_components_channel])
|
|
27
|
+
|
|
26
28
|
# Run Firebase Test Lab
|
|
27
29
|
result_url = Helper.run_tests(params[:gcloud_components_channel], "--type #{params[:type]} "\
|
|
28
30
|
"--app #{params[:app_apk]} "\
|
|
@@ -182,7 +184,7 @@ module Fastlane
|
|
|
182
184
|
FastlaneCore::ConfigItem.new(key: :gcloud_components_channel,
|
|
183
185
|
env_name: "gcloud_components_channel",
|
|
184
186
|
description: "If you use beta or alpha components. Default stable (alpha/beta)",
|
|
185
|
-
is_string: true
|
|
187
|
+
is_string: true,
|
|
186
188
|
optional: true,
|
|
187
189
|
default_value: "stable"),
|
|
188
190
|
|