berl 1.0.5 → 1.0.6

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
  SHA256:
3
- metadata.gz: ef3b8cea34a383b4dfd58ce527c8c2971f99dfaee9d70a830e4f488d71c376ff
4
- data.tar.gz: f38a17d5ef3891f8a4cdbce033705a10f21cd281e1d43c8733b928c4cf5ddcfd
3
+ metadata.gz: e882027a7dcb54b844aa6c7878da6a8d14732d7d0a8c1bc666a8ce846657e2a8
4
+ data.tar.gz: 19b3bed60b1b039bba7fba7e7f4800e1991afbbf3674e739685bc271e1e71bce
5
5
  SHA512:
6
- metadata.gz: f4040d3a4894eed25fceb864d894e0c73e14719133612be388e29280ad2030c29794db2be3fae50858b4fe707b0f3a31aecce100cd490dadbafd61801c30d9d3
7
- data.tar.gz: 215d019c5f086ba5e5e18dd149bc469347b422250b986b209a31e2ea1239337f6dda4fa9753e3355f278121d07e2b019c522008852d5e04dece42f4b95609235
6
+ metadata.gz: '0859f0efe2af68b9df50f5dd5803a19a152b90cdee3abf6b4e1785176bad230ffa64433455fb20572654a340513caa062e550109bdc778a53a0f0c48323e6b62'
7
+ data.tar.gz: 55337e3bd9c1db7aab34fa11d4a5e7a5c2bcfa866d0b27f27a57b2a93e199161fb99352bd7412cb9017124d9b201962db8c1310b72967013629ba87203dde234
@@ -17,7 +17,7 @@ module Berl
17
17
  def start
18
18
  Parallel.each(
19
19
  @suites,
20
- in_processes: @num_of_workers,
20
+ in_threads: @num_of_workers,
21
21
  finish: method(:handle_finish)
22
22
  ) do |suite|
23
23
  database = @databases[Parallel.worker_number]
@@ -19,7 +19,7 @@ class DatabaseWizard
19
19
  database_connection_string_tpl = "mysql://root:root_password@db/sylius_%s?charset=utf8mb4"
20
20
  end
21
21
 
22
- Parallel.each(1..num_of_databases, in_processes: 4, finish: method(:handle_finish)) do |i|
22
+ Parallel.each(1..num_of_databases, in_threads: num_of_databases, finish: method(:handle_finish)) do |i|
23
23
  database_connection_string = sprintf(database_connection_string_tpl, i)
24
24
 
25
25
  setup_db_cmd = build_setup_db_cmd(database_connection_string)
data/lib/berl/version.rb CHANGED
@@ -1,7 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Berl
4
- VERSION = '1.0.5'
4
+ VERSION = '1.0.6'
5
5
 
6
6
  module Version # :nodoc: all
7
7
  MAJOR, MINOR, BUILD, *OTHER = Berl::VERSION.split '.'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: berl
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.5
4
+ version: 1.0.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jakub Tobiasz