fastlane-plugin-android_testlab_script_swit 0.1.905 → 0.1.906
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: 96dab9ced59454726f9aef469e2d6e65f8792ee04570c176860967c98bb20a54
|
4
|
+
data.tar.gz: 3bf15cf5d3d9dc69400239430cf46c37edbfbd21506030bb77ab70174ec8d3e6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fa7679a0f5db39003d65921c58dcd007400e00bb76ac3836266f1e635aa19875c50827b9d74de73b3f5dc51e7a005259304d0b9e1eea071d7857f164cdd4ae20
|
7
|
+
data.tar.gz: aec5975ea9cbbea101c1015f22dc351984809c455cd61b32a7b7bd484de20a168484e2089f049ef47392cecd02820fa06fdb0bce4450f91b295db46567f9700e
|
data/lib/fastlane/plugin/android_testlab_script_swit/actions/android_testlab_script_swit_action.rb
CHANGED
@@ -51,9 +51,6 @@ module Fastlane
|
|
51
51
|
|
52
52
|
# Firebase Test Lab Result Json
|
53
53
|
resultJson = JSON.parse(File.read(params[:console_log_file_name]))
|
54
|
-
|
55
|
-
# 결과 데이터 저장용 배열 생성
|
56
|
-
results = []
|
57
54
|
|
58
55
|
# 각 JSON 객체에 대해 반복
|
59
56
|
resultJson.each do |item|
|
@@ -68,9 +65,9 @@ module Fastlane
|
|
68
65
|
parts.each_with_index do |part, index|
|
69
66
|
swit_device_payload += "{\"type\":\"rt_section\",\"indent\":1,\"elements\":[{\"type\":\"rt_text\",\"content\":\"Device#{index + 1}\"}]},
|
70
67
|
{\"type\": \"rt_section\",\"indent\":2,\"elements\":[{\"type\":\"rt_text\",\"content\":\"Part : #{parts[index]}\"}]},
|
71
|
-
{\"type\":\"rt_section\",\"indent\":2,\"elements\":[{\"type\":\"rt_text\",\"content\":\"Result : #{
|
68
|
+
{\"type\":\"rt_section\",\"indent\":2,\"elements\":[{\"type\":\"rt_text\",\"content\":\"Result : #{outcome}\"}]}"
|
72
69
|
|
73
|
-
swit_device_payload += "," unless index ==
|
70
|
+
swit_device_payload += "," unless index == parts.length - 1
|
74
71
|
end
|
75
72
|
|
76
73
|
end
|