parallel_split_test 0.4.0 → 0.4.1
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/Readme.md +6 -2
- data/bin/parallel_split_test +1 -0
- data/lib/parallel_split_test/command_line.rb +3 -1
- data/lib/parallel_split_test/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0fa0e4f110f5a7deb5786f38a047eeaa55e6ad17
|
|
4
|
+
data.tar.gz: f03085959e5cbe97d15444e054fbf3b6a45fe168
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: cdc90f8c669c80948c84ef37bcd1488aeb1214112293d84ee2e139444f6f440e696dee30e16d80056ce46ed3a2bf3f718bad6f6afccce72e3af0a18f3a05ab96
|
|
7
|
+
data.tar.gz: 3a38adb81ca1711c008b43ed2a08f2b8070db884613baecc7488b376096fa39329e4442ab1007788408c7748d82dd9efe991f6b6c475ad7480b33bad315b21fd
|
data/Readme.md
CHANGED
|
@@ -73,8 +73,12 @@ TODO
|
|
|
73
73
|
- Cucumber support
|
|
74
74
|
- Test::Unit / Minitest support
|
|
75
75
|
|
|
76
|
-
|
|
77
|
-
|
|
76
|
+
Authors
|
|
77
|
+
=======
|
|
78
|
+
|
|
79
|
+
### [Contributors](https://github.com/grosser/parallel_split_test/contributors)
|
|
80
|
+
- [bootstraponline](https://github.com/bootstraponline)
|
|
81
|
+
|
|
78
82
|
[Michael Grosser](http://grosser.it)<br/>
|
|
79
83
|
michael@grosser.it<br/>
|
|
80
84
|
License: MIT<br/>
|
data/bin/parallel_split_test
CHANGED
|
@@ -12,6 +12,8 @@ module ParallelSplitTest
|
|
|
12
12
|
end
|
|
13
13
|
|
|
14
14
|
def run(err, out)
|
|
15
|
+
no_summary = @args.delete('--no-summary')
|
|
16
|
+
|
|
15
17
|
@options = RSpec::Core::ConfigurationOptions.new(@args)
|
|
16
18
|
|
|
17
19
|
processes = ParallelSplitTest.choose_number_of_processes
|
|
@@ -30,7 +32,7 @@ module ParallelSplitTest
|
|
|
30
32
|
|
|
31
33
|
combine_out_files if out_file
|
|
32
34
|
|
|
33
|
-
reprint_result_lines(out, results.map(&:last))
|
|
35
|
+
reprint_result_lines(out, results.map(&:last)) unless no_summary
|
|
34
36
|
results.map(&:first).max # combine exit status
|
|
35
37
|
end
|
|
36
38
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: parallel_split_test
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.4.
|
|
4
|
+
version: 0.4.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Michael Grosser
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-
|
|
11
|
+
date: 2015-06-29 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rspec
|