fastlane-plugin-android_testlab_script_swit 0.1.48 → 0.1.49
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: d51ef5a1520ffb1564a21e846ec0615774fbbae6b4dae0ee9234df61081a7ff0
|
|
4
|
+
data.tar.gz: dcb28508be10f15194d5778f6eb44a03c8d26e31a11f8013e20363c017154fb2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d8a0a9ebb48abcb5991c709773932ba5cb0c3768ad1d4fd61136e79f365987d2d12d519b04656508f820462b66fdd9356a53c37406df7f7a588907cfc39c42c2
|
|
7
|
+
data.tar.gz: 476d63c03799eba4bd0294d1b83c394027da0a8fabf1fc1e33783061b3c77f5b7fdfbd092a50270cf48377b46eee8b771404699a81f5dbb7fc8d4dceb0371f3c
|
data/lib/fastlane/plugin/android_testlab_script_swit/helper/android_testlab_script_swit_helper.rb
CHANGED
|
@@ -34,9 +34,14 @@ module Fastlane
|
|
|
34
34
|
|
|
35
35
|
def self.run_tests(gcloud_components_channel, arguments)
|
|
36
36
|
UI.message("Test running...")
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
37
|
+
|
|
38
|
+
Action.sh("set +e; gcloud #{gcloud_components_channel} firebase test android run #{arguments}; set -e")
|
|
39
|
+
|
|
40
|
+
# 커스텀 1
|
|
41
|
+
# Action.sh("set +e; gcloud#{' ' + gcloud_components_channel unless gcloud_components_channel == "stable"} firebase test android run #{arguments}; set -e")
|
|
42
|
+
|
|
43
|
+
# 원본
|
|
44
|
+
# Action.sh("set +e; gcloud #{gcloud_components_channel unless gcloud_components_channel == "stable"} firebase test android run #{arguments}; set -e")
|
|
40
45
|
end
|
|
41
46
|
|
|
42
47
|
def self.copy_from_gcs(bucket_and_path, copy_to)
|