fastlane-plugin-android_testlab_script_swit 0.1.41 → 0.1.42
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 +3 -1
- data/lib/fastlane/plugin/android_testlab_script_swit/helper/android_testlab_script_swit_helper.rb +2 -1
- 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: c15ca72f725c182785dc8e83d26b2da450f74c60dfe41e44bd828ee3e0cde1e4
|
|
4
|
+
data.tar.gz: 6be234529f0c6764906ba4c4aa2a335ec71afabeaf52d8c3f60d80f6f21705e1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bbe5dcf6aee2a3a5c90e643ec8f376e7ac32b59d44ab8f35c6ccab286011c1cedde767276fbf37a01f79db10deffed64eed1197d6c3267af48e07fddd6f6313c
|
|
7
|
+
data.tar.gz: a01b4db94d039dc74017ff75e17b224622a5d3f2fe9801f569650918b5c8323d5346e105fb998db8d01c4a079dea26d417e41b80c141cf1403a582e22e0f1353
|
data/lib/fastlane/plugin/android_testlab_script_swit/actions/android_testlab_script_swit_action.rb
CHANGED
|
@@ -24,7 +24,9 @@ module Fastlane
|
|
|
24
24
|
robo_script_option = params[:robo_script_path].nil? ? "" : "--robo-script #{params[:robo_script_path]} "
|
|
25
25
|
|
|
26
26
|
# Run Firebase Test Lab
|
|
27
|
-
|
|
27
|
+
UI.message(params[:gcloud_components_channel])
|
|
28
|
+
|
|
29
|
+
Helper.run_tests(params[:gcloud_components_channel], "--type #{params[:type]} "\
|
|
28
30
|
"--app #{params[:app_apk]} "\
|
|
29
31
|
"#{"--test #{params[:app_test_apk]} " unless params[:app_test_apk].nil?}"\
|
|
30
32
|
"#{"--use-orchestrator " if params[:type] == "instrumentation" && params[:use_orchestrator]}"\
|
data/lib/fastlane/plugin/android_testlab_script_swit/helper/android_testlab_script_swit_helper.rb
CHANGED
|
@@ -34,8 +34,9 @@ module Fastlane
|
|
|
34
34
|
|
|
35
35
|
def self.run_tests(arguments)
|
|
36
36
|
UI.message("Test running...")
|
|
37
|
+
Action.sh("set +e; gcloud#{' ' + gcloud_components_channel unless gcloud_components_channel == "stable"} firebase test android run #{arguments}; set -e")
|
|
37
38
|
# Action.sh("set +e; gcloud #{gcloud_components_channel unless gcloud_components_channel == "stable"} firebase test android run #{arguments}; set -e")
|
|
38
|
-
|
|
39
|
+
# Action.sh("set +e; gcloud stable firebase test android run #{arguments}; set -e")
|
|
39
40
|
end
|
|
40
41
|
|
|
41
42
|
def self.copy_from_gcs(bucket_and_path, copy_to)
|