test-queue-split 0.3.0 → 0.3.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/.gitignore +2 -0
- data/Gemfile.lock +1 -1
- data/README.md +3 -0
- data/lib/test_queue/iterator.rb +2 -1
- data/lib/test_queue/runner.rb +5 -2
- data/lib/test_queue/runner/rspec.rb +16 -1
- data/lib/test_queue/runner/rspec3.rb +9 -1
- data/lib/test_queue/version.rb +1 -1
- data/release_notes.md +123 -0
- metadata +3 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 315354c9be9f0163f0d141c09ebe15cc08467f82
|
|
4
|
+
data.tar.gz: 191faea465d81e9d4ab98c2ccfde23def6e38737
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9e1ffe986863d5e35f2f140372d35e90811214fa65943bf57988c9de7027535af0f7e9ca253bcbeac44c852f5ac41c55abecaaf9897faa41cbe151eb1ae9bbb1
|
|
7
|
+
data.tar.gz: 90a21f0a5fea1dd139bcb5c444bfe6d373c756302bf7f7a7d77c497907b28457baad3599e36876e566231fa6e321777b01d872438eeae2635a89882748abb6c9
|
data/.gitignore
ADDED
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
## test-queue
|
|
2
2
|
|
|
3
|
+
[](https://rubygems.org/gems/test-queue-split)
|
|
4
|
+
|
|
3
5
|
Yet another parallel test runner, built using a centralized queue to ensure
|
|
4
6
|
optimal distribution of tests between workers.
|
|
5
7
|
|
|
@@ -35,6 +37,7 @@ the workload and relay results back to a central master.
|
|
|
35
37
|
- `TEST_QUEUE_RELAY_TIMEOUT`: when using remote workers, the amount of time a worker will try to reconnect to start work
|
|
36
38
|
- `TEST_QUEUE_RELAY_TOKEN`: when using remote workers, this must be the same on both workers and the server for remote workers to run tests.
|
|
37
39
|
- `TEST_QUEUE_SLAVE_MESSAGE`: when using remote workers, set this on a slave worker and it will appear on the slave's connection message on the master.
|
|
40
|
+
- `TEST_QUEUE_SPLIT_GROUPS`: split tests up by example rather than example group. Faster for tests with short setup time such as selenium. RSpec only. Add the :no_split tag to ExampleGroups you don't want split.
|
|
38
41
|
|
|
39
42
|
### usage
|
|
40
43
|
|
data/lib/test_queue/iterator.rb
CHANGED
data/lib/test_queue/runner.rb
CHANGED
|
@@ -35,8 +35,11 @@ module TestQueue
|
|
|
35
35
|
end
|
|
36
36
|
|
|
37
37
|
@procline = $0
|
|
38
|
-
@
|
|
39
|
-
|
|
38
|
+
@suites = queue.inject(Hash.new) do |hash, suite|
|
|
39
|
+
key = suite.respond_to?(:id) ? suite.id : suite.to_s
|
|
40
|
+
hash.update key => suite
|
|
41
|
+
end
|
|
42
|
+
@queue = @suites.keys
|
|
40
43
|
|
|
41
44
|
@workers = {}
|
|
42
45
|
@completed = []
|
|
@@ -15,9 +15,24 @@ module TestQueue
|
|
|
15
15
|
class RSpec < Runner
|
|
16
16
|
def initialize
|
|
17
17
|
@rspec = ::RSpec::Core::QueueRunner.new
|
|
18
|
-
|
|
18
|
+
@split_groups = ENV['TEST_QUEUE_SPLIT_GROUPS'] && ENV['TEST_QUEUE_SPLIT_GROUPS'].strip.downcase == 'true'
|
|
19
|
+
if @split_groups
|
|
20
|
+
groups = @rspec.example_groups
|
|
21
|
+
groups_to_split, groups_to_keep = [], []
|
|
22
|
+
groups.each do |group|
|
|
23
|
+
(group.metadata[:no_split] ? groups_to_keep : groups_to_split) << group
|
|
24
|
+
end
|
|
25
|
+
queue = groups_to_split.map(&:descendant_filtered_examples).flatten
|
|
26
|
+
queue.concat groups_to_keep
|
|
27
|
+
queue.sort_by!{ |s| -(stats[s.id] || 0) }
|
|
28
|
+
else
|
|
29
|
+
queue = @rspec.example_groups.sort_by{ |s| -(stats[s.to_s] || 0) }
|
|
30
|
+
end
|
|
31
|
+
|
|
32
|
+
super(queue)
|
|
19
33
|
end
|
|
20
34
|
|
|
35
|
+
|
|
21
36
|
def run_worker(iterator)
|
|
22
37
|
@rspec.run_each(iterator).to_i
|
|
23
38
|
end
|
|
@@ -29,8 +29,16 @@ module RSpec::Core
|
|
|
29
29
|
@configuration.reporter.report(@world.ordered_example_groups.count) do |reporter|
|
|
30
30
|
@configuration.with_suite_hooks do
|
|
31
31
|
iterator.map { |g|
|
|
32
|
-
print " #{g.description}: "
|
|
33
32
|
start = Time.now
|
|
33
|
+
if g.is_a? ::RSpec::Core::Example
|
|
34
|
+
print " #{g.full_description}: "
|
|
35
|
+
example = g
|
|
36
|
+
g = example.example_group
|
|
37
|
+
::RSpec.world.filtered_examples.clear
|
|
38
|
+
::RSpec.world.filtered_examples[g] = [example]
|
|
39
|
+
else
|
|
40
|
+
print " #{g.description}: "
|
|
41
|
+
end
|
|
34
42
|
ret = g.run(reporter)
|
|
35
43
|
diff = Time.now-start
|
|
36
44
|
puts(" <%.3f>" % diff)
|
data/lib/test_queue/version.rb
CHANGED
data/release_notes.md
ADDED
|
@@ -0,0 +1,123 @@
|
|
|
1
|
+
#### v0.3.1 2015-08-31
|
|
2
|
+
|
|
3
|
+
- [bc48cdc](https://github.com/sbonebrake/test-queue/commit/bc48cdc0aa36adaee2c499be2563fef9fc92cfe9) Release 0.3.1
|
|
4
|
+
- [6962d65](https://github.com/sbonebrake/test-queue/commit/6962d6534aceb29518a31312ba452fad8457f3c1) Add gem badge
|
|
5
|
+
- [efac9f8](https://github.com/sbonebrake/test-queue/commit/efac9f8d48f5e7b08cdb1f3409868319c728c031) Add option to split example groups to individual examples before putting on the queue for rspec.
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
#### v0.3.0 2015-08-31
|
|
9
|
+
|
|
10
|
+
- [99119ad](https://github.com/sbonebrake/test-queue/commit/99119ad91d738d6ad4e421294c40739c3fd65bcd) Release 0.3.0
|
|
11
|
+
- [cdf53e9](https://github.com/sbonebrake/test-queue/commit/cdf53e9fb56e2b7df5c33662c85ef790f0a87804) Fork as test-queue-split
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
#### v0.2.13 2015-05-13
|
|
15
|
+
|
|
16
|
+
- [855e0f6](https://github.com/sbonebrake/test-queue/commit/855e0f670f43e597ce87c5694fc34abe0792b3d2) v0.2.13
|
|
17
|
+
- [b49f2b7](https://github.com/sbonebrake/test-queue/commit/b49f2b77e91935e106f99fd10fd6f8a0c4ca20bb) Merge pull request #23 from sj26/rspec3-2
|
|
18
|
+
- [941b918](https://github.com/sbonebrake/test-queue/commit/941b9185d256d77f3ad70e2ccb6a8409c9c61c31) RSpec 3.2+ uses different hook invocation
|
|
19
|
+
- [98af15d](https://github.com/sbonebrake/test-queue/commit/98af15d0f9b7a5869d2d7696ab31e2b72309eb54) Gemfiles for different versions of RSpec
|
|
20
|
+
- [def8b55](https://github.com/sbonebrake/test-queue/commit/def8b55daab1eaba3b4488f05d448f6c04a60bfc) Merge pull request #19 from dtaniwaki/empty-slave-message
|
|
21
|
+
- [23ed982](https://github.com/sbonebrake/test-queue/commit/23ed9823fe57df1bca448baf4d1ead0b963e90f0) Fix empty slave message issue
|
|
22
|
+
- [96fe902](https://github.com/sbonebrake/test-queue/commit/96fe902c4df69f06974be2ead6ed6b68e30d8d23) v0.2.12
|
|
23
|
+
- [6f4b1e5](https://github.com/sbonebrake/test-queue/commit/6f4b1e5305ce0a440c359eac7c8f44084df12279) Merge pull request #18 from tmm1/testunit
|
|
24
|
+
- [475a82c](https://github.com/sbonebrake/test-queue/commit/475a82c0d8c1d10278bf24247d281ef282d80962) cleanup readme
|
|
25
|
+
- [2622b62](https://github.com/sbonebrake/test-queue/commit/2622b62a6f91541b0629902e8f9246c60919fac6) cleanup
|
|
26
|
+
- [868f732](https://github.com/sbonebrake/test-queue/commit/868f732d247c6062bf958247ffb0d01b2f617163) works now
|
|
27
|
+
- [5ce2f6d](https://github.com/sbonebrake/test-queue/commit/5ce2f6d29286c932e4bfe32ad2cfc6f0df481f60) closer to working
|
|
28
|
+
- [9616b74](https://github.com/sbonebrake/test-queue/commit/9616b74f62c1e8b46dca1df30cfb7277b36154ad) wip test-unit support
|
|
29
|
+
- [5633e40](https://github.com/sbonebrake/test-queue/commit/5633e40c6b4bb0472d48d9fcc6eaf81b1a67470d) Merge pull request #13 from hirocaster/fix-rspec-word-in-readme
|
|
30
|
+
- [19aeccf](https://github.com/sbonebrake/test-queue/commit/19aeccf2dba54d3f98d4921bc65f888e97b9243d) v0.2.11
|
|
31
|
+
- [74941e5](https://github.com/sbonebrake/test-queue/commit/74941e5ffce42f6c0f8969fcc3175da43e51cca0) Merge pull request #10 from yasuoza/rspec-3.0
|
|
32
|
+
- [2d9c869](https://github.com/sbonebrake/test-queue/commit/2d9c86907e4c64fffb5a31bf7049f6f254e5c8f1) Merge pull request #14 from mrsimo/minitest-4-parallel-each-messes-up
|
|
33
|
+
- [768c28e](https://github.com/sbonebrake/test-queue/commit/768c28ea8be3f8e18f8f1c6b040906445b3d5bd0) Ignore the ParallelEach changes when running Minitest4
|
|
34
|
+
- [a08e760](https://github.com/sbonebrake/test-queue/commit/a08e76077bf6f0d61952cf5803ec80cbb9ca9ec0) Fix class name in README
|
|
35
|
+
- [fcaed0d](https://github.com/sbonebrake/test-queue/commit/fcaed0d7021811202b3a584348551aef86fe3064) Merge pull request #12 from bhuga/slave-connect-message
|
|
36
|
+
- [b7440f8](https://github.com/sbonebrake/test-queue/commit/b7440f8f49db1de1b40ed76b6cfc51e1ed317d73) Strip newlines from slave_message
|
|
37
|
+
- [47c5f5c](https://github.com/sbonebrake/test-queue/commit/47c5f5cd2f71b98280f9885aabf744ac0cfb0a2f) Undo change to wrong worker message
|
|
38
|
+
- [11bd4a6](https://github.com/sbonebrake/test-queue/commit/11bd4a67868743f98738f3d5586c874b4cbf6003) :books:
|
|
39
|
+
- [14e58b8](https://github.com/sbonebrake/test-queue/commit/14e58b8ab40e7dca2fc02cdb5fb37a3b8de3752d) Implement a slave connection message
|
|
40
|
+
- [4fedb98](https://github.com/sbonebrake/test-queue/commit/4fedb9809106fd46ba71e1a2bcd7793a93df293b) Merge pull request #11 from bhuga/retry-slave-connections
|
|
41
|
+
- [70588ef](https://github.com/sbonebrake/test-queue/commit/70588efbd85207d19b1eda21d96bff4cfa0bdd76) s/run_id/run_token/
|
|
42
|
+
- [17971af](https://github.com/sbonebrake/test-queue/commit/17971afa8b632e596062dba01d35b2e00d5afddf) Remove run_id stuff from iterator
|
|
43
|
+
- [fc3c09f](https://github.com/sbonebrake/test-queue/commit/fc3c09f8a7b496e2e71cd2740feac595852360ed) Bail wrong-master workers out immediately
|
|
44
|
+
- [29fed27](https://github.com/sbonebrake/test-queue/commit/29fed272d2b2fba264db09b0d3d4543f4448ba15) RELAY_RUN -> RELAY_TOKEN
|
|
45
|
+
- [eaff739](https://github.com/sbonebrake/test-queue/commit/eaff739bde204436322e862cfba6586ce8e703f7) :books:
|
|
46
|
+
- [c619da6](https://github.com/sbonebrake/test-queue/commit/c619da61d895d992ff513eeab519ed16c3fdb0de) Slaves only do work when they have the same run id as the master
|
|
47
|
+
- [53d9fee](https://github.com/sbonebrake/test-queue/commit/53d9feef60f3f5764dda16516797911849e3b8f4) Make test-multi.sh work again
|
|
48
|
+
- [a387ab6](https://github.com/sbonebrake/test-queue/commit/a387ab6ddf02b55fde9bc0c80e05ade1cd5a9bd9) Spike at retryable connections from slaves
|
|
49
|
+
- [737baa6](https://github.com/sbonebrake/test-queue/commit/737baa6c5e091cb37c215367b4b09cb9614c4351) Restrict rspec to be 2.1.3 <= version < 4.0
|
|
50
|
+
- [da116e5](https://github.com/sbonebrake/test-queue/commit/da116e5d6b05aa03b7cceb7ec8ab7320e27a907f) Bump supporting rspec version
|
|
51
|
+
- [7dcb5de](https://github.com/sbonebrake/test-queue/commit/7dcb5de58010c1022889f5a9c7e2b1d5c4d56a0c) Separate RSpec::Core::QueueRunner
|
|
52
|
+
- [7f1b36b](https://github.com/sbonebrake/test-queue/commit/7f1b36bbd939892a83adcc6b6e817ac1c8537572) Start developing to support rspec 3.0
|
|
53
|
+
- [265587c](https://github.com/sbonebrake/test-queue/commit/265587cd1e3a82226e358c94f5a96b4eefb48da3) use Kernel.exit! directly
|
|
54
|
+
- [a45c03a](https://github.com/sbonebrake/test-queue/commit/a45c03a13f465c38bb79f512c522d5f93a30c836) some docs
|
|
55
|
+
- [ef559a8](https://github.com/sbonebrake/test-queue/commit/ef559a8df93defe7c2c8fc10e58b0f8a0b3cb5ae) work around minitest_reporter_plugin trying to read iterator
|
|
56
|
+
- [d6297a9](https://github.com/sbonebrake/test-queue/commit/d6297a951b9a51a8f2603be1f1fefaca6b6445c5) add tests for minitest5
|
|
57
|
+
- [56d77bf](https://github.com/sbonebrake/test-queue/commit/56d77bf91b25481d0ff42c5a8a242080c37672d2) rename samples
|
|
58
|
+
- [607432c](https://github.com/sbonebrake/test-queue/commit/607432c3ff71aefeac7b9cf3ef8226e9181a9a59) Merge remote-tracking branch 'origin/master' into minitest5
|
|
59
|
+
- [b47e1ab](https://github.com/sbonebrake/test-queue/commit/b47e1ab1e36553dfb4266c0bcaee8b48a08fee7d) runner/minitest.rb requires correct runner
|
|
60
|
+
- [0a3a2d8](https://github.com/sbonebrake/test-queue/commit/0a3a2d8deacde564cb5e3d43bc70efff500f5d8d) add Worker#summary and Worker#failure_output
|
|
61
|
+
- [ada0ca8](https://github.com/sbonebrake/test-queue/commit/ada0ca8b38fe40beed96f24f48b84cde70db6925) Fix incorrectly triggered TestQueue::Iterator#each
|
|
62
|
+
- [19772ac](https://github.com/sbonebrake/test-queue/commit/19772ac7a82887511079ef2feef0025721d88c84) Reject minitest5's empty test methods
|
|
63
|
+
- [b656554](https://github.com/sbonebrake/test-queue/commit/b65655410d27bdc9e16c0753e3f193123355285f) Support minitest5's verbose output
|
|
64
|
+
- [91a1a72](https://github.com/sbonebrake/test-queue/commit/91a1a728a9d9aec80680ef3f3d92788d6b3c38c9) Support minitest >= 4.7
|
|
65
|
+
- [ef2d3ba](https://github.com/sbonebrake/test-queue/commit/ef2d3ba52287a761ba9915a94f37b32b5b90d5a2) v0.2.9
|
|
66
|
+
- [5d08e05](https://github.com/sbonebrake/test-queue/commit/5d08e05f91db3979524c9877493be3792cc1bc7e) start master server listener early
|
|
67
|
+
- [09a1c6e](https://github.com/sbonebrake/test-queue/commit/09a1c6e4cb9cbf4a66d436f3b67709305c6fa05f) v0.2.8
|
|
68
|
+
- [ee631cd](https://github.com/sbonebrake/test-queue/commit/ee631cd15b6d7b4859a1a8152debe3cbc902ce09) prepare before connecting to relay master
|
|
69
|
+
- [0393eaf](https://github.com/sbonebrake/test-queue/commit/0393eafe85ac8962d430b0226140fe86f59f72a4) show remote hostnames
|
|
70
|
+
- [3be0ea2](https://github.com/sbonebrake/test-queue/commit/3be0ea26be31f8ce3d789fcdfff2058c293f65eb) v0.2.7
|
|
71
|
+
- [2bc6612](https://github.com/sbonebrake/test-queue/commit/2bc66126350d745f63b8c7a651c4f39d71de21f6) avoid waitpid when no children exist
|
|
72
|
+
- [92e164f](https://github.com/sbonebrake/test-queue/commit/92e164f02c3fdc6a7ec5b916ae5a16b0513022ad) v0.2.6
|
|
73
|
+
- [27f0fc0](https://github.com/sbonebrake/test-queue/commit/27f0fc0c4f42e0e404d17671e071cecef7bcfa51) more info for multi-mode
|
|
74
|
+
- [ac883e9](https://github.com/sbonebrake/test-queue/commit/ac883e966232b6102e47bbda851af9a0cca6d916) avoid swallowing errors in the master
|
|
75
|
+
- [7b99e32](https://github.com/sbonebrake/test-queue/commit/7b99e32af787a33a1e7d07157ac838b79fb64d3e) v0.2.5
|
|
76
|
+
- [98ebd89](https://github.com/sbonebrake/test-queue/commit/98ebd89f84fee4fab8349b98520151ca6eaf243f) expose cleanup_worker to public api
|
|
77
|
+
- [af80346](https://github.com/sbonebrake/test-queue/commit/af80346741d20f7e339efa5e963a4e1f4031e20a) v0.2.4
|
|
78
|
+
- [659ed03](https://github.com/sbonebrake/test-queue/commit/659ed032bd5508a8986320a66704108987047ded) fix multi mode
|
|
79
|
+
- [94d7dda](https://github.com/sbonebrake/test-queue/commit/94d7ddabc80837124d3fbf85a850d1ac00ba01ce) handle disconnect before POP
|
|
80
|
+
- [2bc8d4b](https://github.com/sbonebrake/test-queue/commit/2bc8d4b86e4a2f12686e13d8139e04ca80b53295) v0.2.3
|
|
81
|
+
- [cc64bde](https://github.com/sbonebrake/test-queue/commit/cc64bde9bf60a92f2d46a25497e4fdd3ad750a6f) force sorting too
|
|
82
|
+
- [80d4bbf](https://github.com/sbonebrake/test-queue/commit/80d4bbf642574cb008d58c8a8cc2bb1771a02872) v0.2.2
|
|
83
|
+
- [b7b64c2](https://github.com/sbonebrake/test-queue/commit/b7b64c239d354b74302c68f7d6b72ab2fa6045e2) add TEST_QUEUE_FORCE for reproducing failures
|
|
84
|
+
- [445ef6f](https://github.com/sbonebrake/test-queue/commit/445ef6f7a11ea0167790883dad23534038b89331) fix rspec sorting
|
|
85
|
+
- [13208df](https://github.com/sbonebrake/test-queue/commit/13208dfb0c73314c176e5ea7a261eb3f1770c18e) show worker output if it included failures
|
|
86
|
+
- [153f958](https://github.com/sbonebrake/test-queue/commit/153f958814e0c3c1f8362805f1b07cd1997f96d5) better minitest regexen
|
|
87
|
+
- [b6019b3](https://github.com/sbonebrake/test-queue/commit/b6019b31a22fe416e79ada1ae12faf8f113a40a4) v0.2.1
|
|
88
|
+
- [cf82676](https://github.com/sbonebrake/test-queue/commit/cf82676f20a6c6945b029f39c99e08e531faa54c) add cucumber support
|
|
89
|
+
- [8ccbc01](https://github.com/sbonebrake/test-queue/commit/8ccbc0178c19e8134b84033d2084d1c0c06436ca) clean up tests
|
|
90
|
+
- [b5f923d](https://github.com/sbonebrake/test-queue/commit/b5f923d3381bba2db13da1284934e00b94b96478) exitstatus should never be 0 when there are failures
|
|
91
|
+
- [b1aa491](https://github.com/sbonebrake/test-queue/commit/b1aa491f0d42ea24cc802d60a5ed464ecfcde181) v0.2.0
|
|
92
|
+
- [dc3c404](https://github.com/sbonebrake/test-queue/commit/dc3c40436b8373d2cae16c1e23386c883c4f43dc) License
|
|
93
|
+
- [b2a1139](https://github.com/sbonebrake/test-queue/commit/b2a113967c0e5dd2ca96b3c226a0cae2da8d3024) add minitest/spec compatibility based on work by @quasor (closes #3)
|
|
94
|
+
- [29e3eb7](https://github.com/sbonebrake/test-queue/commit/29e3eb79c4e75f1131f73caaa5ebdd5b25d938a1) sample minispec suites from @quasor
|
|
95
|
+
- [91e3846](https://github.com/sbonebrake/test-queue/commit/91e3846905fc3fbf6d5ade2820699f7992b5b656) wire up around filter
|
|
96
|
+
- [ec5878b](https://github.com/sbonebrake/test-queue/commit/ec5878b70a2152f6ccc9b74b06df2ac6873c60e0) add prepare() and around_filter() to the public api
|
|
97
|
+
- [3eaac4f](https://github.com/sbonebrake/test-queue/commit/3eaac4f5145a49b6217914ae94e761136677d533) show slave connections and remote hosts
|
|
98
|
+
- [f516b4a](https://github.com/sbonebrake/test-queue/commit/f516b4a10da54b9477fc951c7ac7c68b07b222dc) configurable stats file
|
|
99
|
+
- [2f482d8](https://github.com/sbonebrake/test-queue/commit/2f482d8eb242ed851816b1db8612426c218950bd) show num suites
|
|
100
|
+
- [8aca826](https://github.com/sbonebrake/test-queue/commit/8aca8261839294f8d5e5c613c6f013f1c841aa07) cleanup
|
|
101
|
+
- [c7e4523](https://github.com/sbonebrake/test-queue/commit/c7e452388157b8ed74b552c1ae5e8bd58cdc4793) summarize cleanup
|
|
102
|
+
- [72304cd](https://github.com/sbonebrake/test-queue/commit/72304cdb81f3ad5ac5c1466cf76fb856547aee9e) add relay mode
|
|
103
|
+
- [fe99a42](https://github.com/sbonebrake/test-queue/commit/fe99a4258f8672d03a8f58a7dba397f3e3dd339d) more readme updates
|
|
104
|
+
- [660213f](https://github.com/sbonebrake/test-queue/commit/660213f6afe1933adf8af5f7d67fa451a899a261) handle worker death during after_fork
|
|
105
|
+
- [9666c4f](https://github.com/sbonebrake/test-queue/commit/9666c4f76fcf9fbf03a854b73e997147e7804655) add support for tcp
|
|
106
|
+
- [840346f](https://github.com/sbonebrake/test-queue/commit/840346f3892906b527522232900b2a9165d7df97) give the master a procline
|
|
107
|
+
- [25df132](https://github.com/sbonebrake/test-queue/commit/25df1329b0528f2ef5be5b8485eeda2d1b133492) cleanup
|
|
108
|
+
- [9973375](https://github.com/sbonebrake/test-queue/commit/997337551a6e413929f71c3538985a11aeba9f6d) after_fork does not require super
|
|
109
|
+
- [62119c4](https://github.com/sbonebrake/test-queue/commit/62119c4bcab47763808e6ab006dffc6d10487714) v0.1.3
|
|
110
|
+
- [8b81980](https://github.com/sbonebrake/test-queue/commit/8b81980ce11570588f3da73be664dd5d49bd9e50) rspec only requires a directory name
|
|
111
|
+
- [85ad2f6](https://github.com/sbonebrake/test-queue/commit/85ad2f6dfc1a504484ee4cd70ad946df993f3c6c) Merge pull request #2 from brandur/require-stringio
|
|
112
|
+
- [47869c2](https://github.com/sbonebrake/test-queue/commit/47869c2e43bc3abc2d5cccb02480ecf209cc2cb5) Explicitly require 'stringio'
|
|
113
|
+
- [ce8b90e](https://github.com/sbonebrake/test-queue/commit/ce8b90ec38787ee906646cee87df15cad959e9ce) set rspec output streams early (before formatters are added)
|
|
114
|
+
- [b683900](https://github.com/sbonebrake/test-queue/commit/b683900916190e6288dda1241d1c12cbd6eea974) avoid stripping newline between failures
|
|
115
|
+
- [0f01d77](https://github.com/sbonebrake/test-queue/commit/0f01d77a483971b0f308c69c055f87f8d916ab38) start numbering from 1 instead of 0
|
|
116
|
+
- [c72fbff](https://github.com/sbonebrake/test-queue/commit/c72fbff758d1f18bcaa8fdce5b13228dc240100d) fix typo
|
|
117
|
+
- [9e2f376](https://github.com/sbonebrake/test-queue/commit/9e2f376f54ebbd4582db7e16c5ac846a83a01e0b) PuppetLint runner
|
|
118
|
+
|
|
119
|
+
|
|
120
|
+
#### v0.1.2 2013-04-23
|
|
121
|
+
|
|
122
|
+
- [177b542](https://github.com/sbonebrake/test-queue/commit/177b542ffa5103cc82e9c115369c4b9200e7d784) v0.1.2
|
|
123
|
+
- [28e30d1](https://github.com/sbonebrake/test-queue/commit/28e30d1901c8d9fb1c9d5f6f3e02d06f401749ad) avoid writing nil to stats file
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: test-queue-split
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Aman Gupta
|
|
@@ -68,6 +68,7 @@ executables:
|
|
|
68
68
|
extensions: []
|
|
69
69
|
extra_rdoc_files: []
|
|
70
70
|
files:
|
|
71
|
+
- ".gitignore"
|
|
71
72
|
- Gemfile
|
|
72
73
|
- Gemfile-minitest4
|
|
73
74
|
- Gemfile-minitest4.lock
|
|
@@ -105,6 +106,7 @@ files:
|
|
|
105
106
|
- lib/test_queue/runner/sample.rb
|
|
106
107
|
- lib/test_queue/runner/testunit.rb
|
|
107
108
|
- lib/test_queue/version.rb
|
|
109
|
+
- release_notes.md
|
|
108
110
|
- test-multi.sh
|
|
109
111
|
- test-queue-split.gemspec
|
|
110
112
|
- test.sh
|