actir 1.2.0 → 1.2.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/actir/parallel_tests/cli.rb +3 -2
- data/lib/actir/version.rb +1 -1
- 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: 6222ddd12feb24d688c141761ba44c100b4be875
|
4
|
+
data.tar.gz: f7c3479902e9fa4f6bcbd677851f1b610a4aa907
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 89a0b6c0d3175ac48e64bf1ed8aa4757841cdc14d58720bfb3924d9a6f7b5df5f16392effba49d4ab93f885e85f979d83e54439a95a7b65bfa2a603858be32ca
|
7
|
+
data.tar.gz: c573cc277cce26993a2c97b01a95e2c0c8a8106c424694e69972ddfaa63ea15eabbc5d191c30d710cad37fa1b86922e224c63e8dc1fa927d6f1aeccd8b6d6b04
|
@@ -331,10 +331,11 @@ module Actir
|
|
331
331
|
|
332
332
|
# 生成详细报告
|
333
333
|
def detail_report
|
334
|
-
@report_path = File.join($project_path, '
|
334
|
+
@report_path = File.join($project_path, 'report')
|
335
335
|
Dir::mkdir(@report_path) if not File.directory?(@report_path)
|
336
336
|
time = Time.now.strftime('%Y%m%d_%H%M%S')
|
337
|
-
file_path = File.join(@report_path, "REPORT_#{time}.html")
|
337
|
+
# file_path = File.join(@report_path, "REPORT_#{time}.html")
|
338
|
+
file_path = File.join(@report_path, "index.html")
|
338
339
|
file = File.new(file_path,"w")
|
339
340
|
report = HtmlReport.new(file)
|
340
341
|
end
|
data/lib/actir/version.rb
CHANGED