fastlane-plugin-android_testlab_script_swit 0.1.937 → 0.1.938
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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 37e68079d73f3d41968836ad6d1686636d33872d28830a7e5d14008022d96dce
|
4
|
+
data.tar.gz: 0e504ce164451b283847b85f72055980db424b23dadc311716b09405304dcc16
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ab6013fd75be28d3122a29bf3a06483fd8767c11b22606d4f641b9a4517a14087e1bb30a31cf298b926f32d135a3ee17ae57bc210da21cdcd58691ed2c4b546d
|
7
|
+
data.tar.gz: 261c68a6601cd5d6409b96fd6fc5c9e793335bd317d58f4a19760be21216b778ca174503315b028c62720898f02e3157d4fdaaeee03caa24a0fb6840a8de1325
|
data/lib/fastlane/plugin/android_testlab_script_swit/actions/android_testlab_script_swit_action.rb
CHANGED
@@ -34,23 +34,10 @@ module Fastlane
|
|
34
34
|
# 딜레이 추가
|
35
35
|
sleep(index * 60) # 각 디바이스별로 1분씩 증가하는 딜레이
|
36
36
|
|
37
|
-
# Run Firebase Test Lab for the current device
|
38
|
-
Helper.run_tests(params[:gcloud_components_channel], "--type #{params[:type]} "\
|
39
|
-
"--app #{params[:app_apk]} "\
|
40
|
-
"#{"--test #{params[:app_test_apk]} " unless params[:app_test_apk].nil?}"\
|
41
|
-
"#{"--use-orchestrator " if params[:type] == "instrumentation" && params[:use_orchestrator]}"\
|
42
|
-
"--device model=#{device[:model]},version=#{device[:version]},locale=#{device[:locale]},orientation=#{device[:orientation]} "\
|
43
|
-
"--timeout #{params[:timeout]} "\
|
44
|
-
"--results-bucket #{results_bucket} "\
|
45
|
-
"--results-dir #{results_dir} "\
|
46
|
-
"#{params[:extra_options]} "\
|
47
|
-
"#{robo_script_option}"\
|
48
|
-
"--format=json 1>#{Helper.if_need_dir(params[:console_log_file_name])}"
|
49
|
-
)
|
50
37
|
end
|
51
38
|
|
52
39
|
|
53
|
-
|
40
|
+
Helper.run_tests(params[:gcloud_components_channel], "--type #{params[:type]} "\
|
54
41
|
"--app #{params[:app_apk]} "\
|
55
42
|
"#{"--test #{params[:app_test_apk]} " unless params[:app_test_apk].nil?}"\
|
56
43
|
"#{"--use-orchestrator " if params[:type] == "instrumentation" && params[:use_orchestrator]}"\
|
@@ -60,7 +47,8 @@ module Fastlane
|
|
60
47
|
"--results-dir #{results_dir} "\
|
61
48
|
"#{params[:extra_options]} "\
|
62
49
|
"#{robo_script_option}"\
|
63
|
-
"--format=json 1>#{Helper.if_need_dir(params[:console_log_file_name])}"
|
50
|
+
"--format=json 1>#{Helper.if_need_dir(params[:console_log_file_name])}"
|
51
|
+
)
|
64
52
|
|
65
53
|
# Fetch results
|
66
54
|
download_dir = params[:download_dir]
|