xamarin-test-cloud 0.9.28 → 0.9.29
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/xamarin-test-cloud/cli.rb +9 -1
- data/lib/xamarin-test-cloud/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 646dc4bedaa2c3dacd054424b0c8acb56834cecd
|
|
4
|
+
data.tar.gz: 18b96d1c4fe04dcb035860077a0ad0027398cdb3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 75a263fb95c65c03a527cfbd03b7c114314890e14768f71ef6f0267fa49cda875349e651e779f31c67dfac5df5165b96abb06eb4a4b637ef80baaeee8d21a479
|
|
7
|
+
data.tar.gz: 1918b8dd78a3764bb41642a12ff5576f367a0297e64864991c4eab0bce4566e5f0764fd5833d0f7b46266b01ee642621968e0d1d878255ddf557bff16e8bb61a
|
|
@@ -278,10 +278,18 @@ module XamarinTestCloud
|
|
|
278
278
|
calabash_data = status_json["calabash_data"]
|
|
279
279
|
|
|
280
280
|
if calabash_data
|
|
281
|
+
failed = calabash_data["scenarios"]["failed"].to_i
|
|
281
282
|
puts "Total scenarios: #{calabash_data["scenarios"]["total"]}"
|
|
282
283
|
puts "#{calabash_data["scenarios"]["passed"]} passed"
|
|
283
|
-
puts "#{
|
|
284
|
+
puts "#{failed} failed"
|
|
284
285
|
puts "Total steps: #{calabash_data["steps"]["total"]}"
|
|
286
|
+
|
|
287
|
+
puts ""
|
|
288
|
+
puts "Test Report:"
|
|
289
|
+
puts status_json['share_link']
|
|
290
|
+
if failed > 0
|
|
291
|
+
exit 1
|
|
292
|
+
end
|
|
285
293
|
end
|
|
286
294
|
exit 0
|
|
287
295
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: xamarin-test-cloud
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.9.
|
|
4
|
+
version: 0.9.29
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Karl Krukow
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2014-
|
|
12
|
+
date: 2014-02-06 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: thor
|
|
@@ -155,7 +155,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
155
155
|
version: '0'
|
|
156
156
|
requirements: []
|
|
157
157
|
rubyforge_project:
|
|
158
|
-
rubygems_version: 2.
|
|
158
|
+
rubygems_version: 2.1.10
|
|
159
159
|
signing_key:
|
|
160
160
|
specification_version: 4
|
|
161
161
|
summary: Command-line interface to Xamarin Test Cloud
|