fastlane-plugin-android_testlab_script_swit 0.1.43 → 0.1.45
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 +4 -4
- data/lib/fastlane/plugin/android_testlab_script_swit/actions/android_testlab_script_swit_action.rb +2 -7
- data/lib/fastlane/plugin/android_testlab_script_swit/helper/android_testlab_script_swit_helper.rb +2 -2
- data/lib/fastlane/plugin/android_testlab_script_swit/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 81d7996e79452432390736401158fece4c297ba569c8b1b2c6e4c44519ec8802
|
|
4
|
+
data.tar.gz: 7e7502a8ca31ad5fa22f7cf3f85fc4e5bd363671a3f8f9e57f5e24d055328fd6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ef23212bfe942b32cdfb0a9113abe9d8b87e596b26fd14d5dbf8bf95c997ca1d7bae78004e1819bac5a88a634cae50394abd43661afcfd43452c0549f4c964e9
|
|
7
|
+
data.tar.gz: 2dace34f2399fe1150faf148861cf11d74c631bc5c4fb5db23b5dab7c7d0ac120db6eca188f7fc40ca5d4aaef6865f5965b8856fcdce99fff973d6583473c951
|
data/lib/fastlane/plugin/android_testlab_script_swit/actions/android_testlab_script_swit_action.rb
CHANGED
|
@@ -182,14 +182,9 @@ module Fastlane
|
|
|
182
182
|
FastlaneCore::ConfigItem.new(key: :gcloud_components_channel,
|
|
183
183
|
env_name: "gcloud_components_channel",
|
|
184
184
|
description: "If you use beta or alpha components. Default stable (alpha/beta)",
|
|
185
|
-
|
|
185
|
+
type: String",
|
|
186
186
|
optional: true,
|
|
187
|
-
default_value: "stable",
|
|
188
|
-
verify_block: proc do |value|
|
|
189
|
-
if value != "stable" && value != "alpha" && value != "beta"
|
|
190
|
-
UI.user_error!("Unknown gcloud component channel.")
|
|
191
|
-
end
|
|
192
|
-
end),
|
|
187
|
+
default_value: "stable"),
|
|
193
188
|
|
|
194
189
|
# console_log_file_name (false)
|
|
195
190
|
FastlaneCore::ConfigItem.new(key: :console_log_file_name,
|
data/lib/fastlane/plugin/android_testlab_script_swit/helper/android_testlab_script_swit_helper.rb
CHANGED
|
@@ -32,7 +32,7 @@ module Fastlane
|
|
|
32
32
|
Action.sh("gcloud auth activate-service-account --key-file #{gcloud_key_file}")
|
|
33
33
|
end
|
|
34
34
|
|
|
35
|
-
def self.run_tests(arguments)
|
|
35
|
+
def self.run_tests(gcloud_components_channel, arguments)
|
|
36
36
|
UI.message("Test running...")
|
|
37
37
|
Action.sh("set +e; gcloud#{' ' + gcloud_components_channel unless gcloud_components_channel == "stable"} firebase test android run #{arguments}; set -e")
|
|
38
38
|
# Action.sh("set +e; gcloud #{gcloud_components_channel unless gcloud_components_channel == "stable"} firebase test android run #{arguments}; set -e")
|
|
@@ -142,4 +142,4 @@ module Fastlane
|
|
|
142
142
|
return prefix, comment
|
|
143
143
|
end
|
|
144
144
|
end
|
|
145
|
-
end
|
|
145
|
+
end
|