parallel_tests 1.5.1 → 1.6.0
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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1085d9a278d31ab6a969729c496a8d98a4eb2c7e
|
4
|
+
data.tar.gz: c7b5aa3e5e86b601309beffe3b54c1848e2177a4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 46d046ea02134bd696b668ff84e5bd1c01d23f2c24f1ad54619631794977be7b3b79639855609204f88305c9b3d926af207b4cbe0653ef8c3905b3f384f699b9
|
7
|
+
data.tar.gz: 11924a9e09164952ad7c22b22880141555064ac3aba9a8f260cafe5666f82dc012874d217ae6160cd0bbac788b50eca56118c1aa8aee82a3060441e843e73a2d
|
data/Readme.md
CHANGED
@@ -315,6 +315,8 @@ inspired by [pivotal labs](http://pivotallabs.com/users/miked/blog/articles/849-
|
|
315
315
|
- [Aaron Jensen](https://github.com/aaronjensen)
|
316
316
|
- [Ed Slocomb](https://github.com/edslocomb)
|
317
317
|
- [Cezary Baginski](https://github.com/e2)
|
318
|
+
- [Marius Ioana](https://github.com/mariusioana)
|
319
|
+
|
318
320
|
|
319
321
|
[Michael Grosser](http://grosser.it)<br/>
|
320
322
|
michael@grosser.it<br/>
|
@@ -7,14 +7,16 @@ module ParallelTests
|
|
7
7
|
include ParallelTests::Gherkin::Io
|
8
8
|
|
9
9
|
def initialize(runtime, path_or_io, options)
|
10
|
+
super
|
10
11
|
@io = prepare_io(path_or_io)
|
11
12
|
end
|
12
13
|
|
13
|
-
def
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
14
|
+
def done
|
15
|
+
return if @failures.empty?
|
16
|
+
lock_output do
|
17
|
+
@failures.each do |file, lines|
|
18
|
+
lines.each do |line|
|
19
|
+
@io.print "#{file}:#{line} "
|
18
20
|
end
|
19
21
|
end
|
20
22
|
end
|
@@ -7,6 +7,7 @@ module ParallelTests
|
|
7
7
|
attr_reader :scenarios
|
8
8
|
|
9
9
|
def initialize(tag_expression = ::Gherkin::TagExpression.new([]))
|
10
|
+
raise "ScenarioLineLogger not supported anymore after upgrading to Cucumber 2.0, please fix!"
|
10
11
|
@scenarios = []
|
11
12
|
@tag_expression = tag_expression
|
12
13
|
end
|
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: 1.
|
4
|
+
version: 1.6.0
|
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-07-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: parallel
|
@@ -81,7 +81,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
81
81
|
version: '0'
|
82
82
|
requirements: []
|
83
83
|
rubyforge_project:
|
84
|
-
rubygems_version: 2.2.
|
84
|
+
rubygems_version: 2.2.2
|
85
85
|
signing_key:
|
86
86
|
specification_version: 4
|
87
87
|
summary: Run Test::Unit / RSpec / Cucumber / Spinach in parallel
|