xcresult 0.1.0 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/xcresult/parser.rb +2 -2
- data/lib/xcresult/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: b8b059189c741bbaf7e5f4a5c23ef524dcf57a012001a138ca975564718846d6
|
4
|
+
data.tar.gz: 34c8ba16f96f43e0672289e99f910367fb06fed72f550c8aae2ffaa04bc8d78a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 11cdf9db657dafb8fa579cdbf3a7359abe3026cdfaf23dda45c8271e6d6678c675360b0c3cb27d30d1985890e4c23099f06ba56ed85f61a7b069115efa34c36b
|
7
|
+
data.tar.gz: 9bc16d6b395414bbac5c8da3a48e82974c59222a9bfa5f4bfc12df83eaa048293a3440d451c1da9432e878f4c3f3cc0929c017eeccc8cbb3a9caa44d14ab9bcf
|
data/lib/xcresult/parser.rb
CHANGED
@@ -36,7 +36,7 @@ module XCResult
|
|
36
36
|
@action_test_plan_summaries
|
37
37
|
end
|
38
38
|
|
39
|
-
def
|
39
|
+
def export_xccovreports(destination: nil)
|
40
40
|
destination ||= Dir.pwd
|
41
41
|
|
42
42
|
coverages = actions_invocation_record.actions.map do |action|
|
@@ -63,7 +63,7 @@ module XCResult
|
|
63
63
|
|
64
64
|
def execute_cmd(cmd)
|
65
65
|
output = `#{cmd}`
|
66
|
-
raise "Failed to execute - #{cmd}" unless
|
66
|
+
raise "Failed to execute - #{cmd}" unless $?.success?
|
67
67
|
|
68
68
|
output
|
69
69
|
end
|
data/lib/xcresult/version.rb
CHANGED