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: 6166c52e0a3ff7792276b9d0fa8cd315ce7d96a0
4
- data.tar.gz: 845cea1451521dc0a49bef50cbc0f2728d2c4aa4
3
+ metadata.gz: 1085d9a278d31ab6a969729c496a8d98a4eb2c7e
4
+ data.tar.gz: c7b5aa3e5e86b601309beffe3b54c1848e2177a4
5
5
  SHA512:
6
- metadata.gz: f0843a156098ba9e57ae8457376c8745591dfdaa013354719ef3123451934c551c8bd4c5d2310e23b05b9ae4b43405782706b23d40fe2b54c09edfeb2cdcfb91
7
- data.tar.gz: 02523dd42600f12708f87abedb53aa5c9f5ff48a7503f9af3bc4fc1710a993be1efb4390c67f4a2daae415daff67187b779b869e9c9241c5bcd9895f30a2d6a6
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 after_feature(feature)
14
- unless @lines.empty?
15
- lock_output do
16
- @lines.each do |line|
17
- @io.puts "#{feature.file}:#{line}"
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
@@ -1,3 +1,3 @@
1
1
  module ParallelTests
2
- VERSION = Version = '1.5.1'
2
+ VERSION = Version = '1.6.0'
3
3
  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.5.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-06-26 00:00:00.000000000 Z
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.3
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