parallel_tests 2.2.0 → 2.2.1
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 -0
- data/lib/parallel_tests/cli.rb +1 -1
- data/lib/parallel_tests/tasks.rb +1 -1
- data/lib/parallel_tests/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: f2aed504af28e6422ce6a0dab9578f86a6004f3c
|
4
|
+
data.tar.gz: b458e25fe0bcbd498b556956f9156279f846f699
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0c3334b6c532d21ebda0a8fc355a3e96df884c3424fac5d00068689d07efc07ad6e4dfe896303442b6e16ab08f501e220963c0bf714341101266cff5928a2e28
|
7
|
+
data.tar.gz: 6bb00ec1ea1f187a62ff30ec130bd20895bd835485c9e95a651a9f13a50bfff4216f57ab7aafe7f7cfb1c8f5227893d78676a57c3d4243f623f7f9890a6e81cf
|
data/Readme.md
CHANGED
@@ -246,6 +246,7 @@ TIPS
|
|
246
246
|
- [Distributed parallel test (e.g. Travis Support)](https://github.com/grosser/parallel_tests/wiki/Distributed-Parallel-Tests-and-Travis-Support)
|
247
247
|
- Debug errors that only happen with multiple files using `--verbose` and [cleanser](https://github.com/grosser/cleanser)
|
248
248
|
- Shell alias: `alias prspec='parallel_rspec -m 2 --'`
|
249
|
+
- [Spring] to use spring you have to [patch it](https://github.com/grosser/parallel_tests/wiki/Spring)
|
249
250
|
- Contribute your own gotaches to the [Wiki](https://github.com/grosser/parallel_tests/wiki) or even better open a PR :)
|
250
251
|
|
251
252
|
TODO
|
data/lib/parallel_tests/cli.rb
CHANGED
@@ -8,7 +8,7 @@ module ParallelTests
|
|
8
8
|
def run(argv)
|
9
9
|
options = parse_options!(argv)
|
10
10
|
|
11
|
-
ENV['DISABLE_SPRING']
|
11
|
+
ENV['DISABLE_SPRING'] ||= '1'
|
12
12
|
|
13
13
|
num_processes = ParallelTests.determine_number_of_processes(options[:count])
|
14
14
|
num_processes = num_processes * (options[:multiply] || 1)
|
data/lib/parallel_tests/tasks.rb
CHANGED
@@ -19,7 +19,7 @@ module ParallelTests
|
|
19
19
|
end
|
20
20
|
|
21
21
|
# this is a crazy-complex solution for a very simple problem:
|
22
|
-
# removing certain lines from the output without
|
22
|
+
# removing certain lines from the output without changing the exit-status
|
23
23
|
# normally I'd not do this, but it has been lots of fun and a great learning experience :)
|
24
24
|
#
|
25
25
|
# - sed does not support | without -r
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: parallel_tests
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.2.
|
4
|
+
version: 2.2.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-12-
|
11
|
+
date: 2015-12-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: parallel
|