aws-must-templates 0.1.4 → 0.1.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/lib/tasks/suite.rake +3 -3
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 18ca6417f6046aec7b380d88aed546334346be5c
|
4
|
+
data.tar.gz: a5fffb97da19d96e9aa06682df9bac60019a3299
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 23cce685cf1cfe6cfaded62a8bb574d93ba2ccee1157a0e31b0082d0d57ca7022a1e02a82c9123d073caa33202a61182a80dabca252a3611f0ad841ba0734b56
|
7
|
+
data.tar.gz: f8053520fd6c4724b76e52c79c5c13c9bb60faf4b4041af003dcf1b9bf4956e9a8a61f2626dbbf25190b9eb315292ee0b642c907b8257eacd915b9ea9d0d2374
|
data/README.md
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
# aws-must-templates - cloudformation templates for aws-must - $Release:0.1.
|
1
|
+
# aws-must-templates - cloudformation templates for aws-must - $Release:0.1.5$
|
2
2
|
|
3
3
|
Set of [extensible](#OVERRIDE)
|
4
4
|
[templates](https://rawgit.com/jarjuk/aws-must-templates/master/generated-docs/aws-must-templates.html)
|
data/lib/tasks/suite.rake
CHANGED
@@ -60,7 +60,7 @@ namespace :suite do
|
|
60
60
|
all_suites.each do |t|
|
61
61
|
begin
|
62
62
|
Rake::Task[t].invoke( args.gen_opts )
|
63
|
-
failed_suites << t unless $?.success?
|
63
|
+
failed_suites << t unless ( $?.nil? || $?.success? )
|
64
64
|
# # Run in isolation && continue no matter what
|
65
65
|
# sh "rake #{t}; true"
|
66
66
|
rescue => e
|
@@ -130,7 +130,7 @@ namespace :suite do
|
|
130
130
|
|
131
131
|
task :report_dir do
|
132
132
|
report_dir = suite_test_report_dirpath()
|
133
|
-
sh "mkdir -p #{
|
133
|
+
sh "mkdir -p #{report_dir}" unless File.exist?(report_dir)
|
134
134
|
end
|
135
135
|
|
136
136
|
# **********
|
@@ -187,7 +187,7 @@ namespace :suite do
|
|
187
187
|
else
|
188
188
|
Rake::Task[task].invoke( args )
|
189
189
|
end
|
190
|
-
failed_tasks << task unless $?.success?
|
190
|
+
failed_tasks << task unless ( $?.nil? || $?.success? )
|
191
191
|
# # Run in isolation && continue no matter what
|
192
192
|
# sh "rake #{t}; true"
|
193
193
|
rescue => e
|