parallel_tests 2.19.0 → 2.20.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 0fa963fca5a10d59d5971b2cb525c5732c35a7df
4
- data.tar.gz: f72595bf9991efeb6fc43e16b35c2d58a3409806
3
+ metadata.gz: 126a6088de6cb41ed24578e9e0073cb397864193
4
+ data.tar.gz: 82c3b988b3ebb7fa769bd2875636f835738010e5
5
5
  SHA512:
6
- metadata.gz: 337b43dfbd208e1a79e93332ed3397cfcc44fea01eff14272a21c2aad8f0883609029b8467a764a8391cd9c5515ac2274bcb0f557ac78f01f2c483b6a7cc3abb
7
- data.tar.gz: f66766cf39af95b870f0def8b7351cc3f7375b4ef372e18ec9450cd9f665df016cde8bc7c85398a451ef8540467f77ae73d5ea390e73f6bc6d425844bb4f95a7
6
+ metadata.gz: 9a37bc96ddd7bf3609160abfc60b7a0617342ff17277f51c77ddd05e0dedac193f5c2830ac25900ac19cef1dc295faae633aca66e14935b90f2dee1533879ef4
7
+ data.tar.gz: '0878caabc9da6424645a72bd7bbc141aa91bce6cced4b6adbe0a10ce6a0a5ded372b677166f851bb05bee69b4b63b797bde40ae79bede47028606ddbfbc1d756'
data/Readme.md CHANGED
@@ -213,6 +213,8 @@ Options are:
213
213
  '_spec.rb$' - matches rspec files
214
214
  '_(test|spec).rb$' - matches test or spec files
215
215
  --serialize-stdout Serialize stdout output, nothing will be written until everything is done
216
+ --prefix-output-with-test-env-number
217
+ Prefixes test env number to the output when not using --serialize-stdout
216
218
  --combine-stderr Combine stderr into stdout, useful in conjunction with --serialize-stdout
217
219
  --non-parallel execute same commands but do not in parallel, needs --exec
218
220
  --no-symlinks Do not traverse symbolic links to find test files
@@ -365,6 +367,7 @@ inspired by [pivotal labs](https://blog.pivotal.io/labs/labs/parallelize-your-rs
365
367
  - [Alexandre Wilhelm](https://github.com/dogild)
366
368
  - [Jerry](https://github.com/boblington)
367
369
  - [Aleksei Gusev](https://github.com/hron)
370
+ - [Scott Olsen](https://github.com/scottolsen)
368
371
 
369
372
  [Michael Grosser](http://grosser.it)<br/>
370
373
  michael@grosser.it<br/>
@@ -204,6 +204,7 @@ module ParallelTests
204
204
  TEXT
205
205
  ) { |pattern| options[:suffix] = /#{pattern}/ }
206
206
  opts.on("--serialize-stdout", "Serialize stdout output, nothing will be written until everything is done") { options[:serialize_stdout] = true }
207
+ opts.on("--prefix-output-with-test-env-number", "Prefixes test env number to the output when not using --serialize-stdout") { options[:prefix_output_with_test_env_number] = true }
207
208
  opts.on("--combine-stderr", "Combine stderr into stdout, useful in conjunction with --serialize-stdout") { options[:combine_stderr] = true }
208
209
  opts.on("--non-parallel", "execute same commands but do not in parallel, needs --exec") { options[:non_parallel] = true }
209
210
  opts.on("--no-symlinks", "Do not traverse symbolic links to find test files") { options[:symlinks] = false }
@@ -80,15 +80,15 @@ module ParallelTests
80
80
 
81
81
  puts cmd if options[:verbose]
82
82
 
83
- execute_command_and_capture_output(env, cmd, options[:serialize_stdout])
83
+ execute_command_and_capture_output(env, cmd, options)
84
84
  end
85
85
 
86
- def execute_command_and_capture_output(env, cmd, silence)
86
+ def execute_command_and_capture_output(env, cmd, options)
87
87
  pid = nil
88
88
  output = IO.popen(env, cmd) do |io|
89
89
  pid = io.pid
90
90
  ParallelTests.pids.add(pid)
91
- capture_output(io, silence)
91
+ capture_output(io, env, options)
92
92
  end
93
93
  ParallelTests.pids.delete(pid) if pid
94
94
  exitstatus = $?.exitstatus
@@ -145,7 +145,7 @@ module ParallelTests
145
145
  end
146
146
 
147
147
  # read output of the process and print it in chunks
148
- def capture_output(out, silence)
148
+ def capture_output(out, env, options={})
149
149
  result = ""
150
150
  loop do
151
151
  begin
@@ -154,8 +154,10 @@ module ParallelTests
154
154
  read = read.force_encoding(Encoding.default_internal)
155
155
  end
156
156
  result << read
157
- unless silence
158
- $stdout.print read
157
+ unless options[:serialize_stdout]
158
+ message = read
159
+ message = "[TEST GROUP #{env['TEST_ENV_NUMBER']}] #{message}" if options[:prefix_output_with_test_env_number]
160
+ $stdout.print message
159
161
  $stdout.flush
160
162
  end
161
163
  end
@@ -1,3 +1,3 @@
1
1
  module ParallelTests
2
- VERSION = Version = '2.19.0'
2
+ VERSION = Version = '2.20.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: 2.19.0
4
+ version: 2.20.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: 2017-11-13 00:00:00.000000000 Z
11
+ date: 2018-01-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: parallel
@@ -82,7 +82,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
82
82
  version: '0'
83
83
  requirements: []
84
84
  rubyforge_project:
85
- rubygems_version: 2.5.1
85
+ rubygems_version: 2.6.14
86
86
  signing_key:
87
87
  specification_version: 4
88
88
  summary: Run Test::Unit / RSpec / Cucumber / Spinach in parallel