mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
Merge pull request #633 from mkb/master
Fix regression in Rakefile introduced in 70e7ea1
This commit is contained in:
commit
113b1a666c
1 changed files with 3 additions and 3 deletions
6
Rakefile
6
Rakefile
|
@ -72,11 +72,11 @@ def tests(mocked)
|
||||||
start = Time.now.to_i
|
start = Time.now.to_i
|
||||||
threads = []
|
threads = []
|
||||||
Thread.main[:results] = []
|
Thread.main[:results] = []
|
||||||
Fog.providers.each do |provider|
|
Fog.providers.each do |key, value|
|
||||||
threads << Thread.new do
|
threads << Thread.new do
|
||||||
Thread.main[:results] << {
|
Thread.main[:results] << {
|
||||||
:provider => provider,
|
:provider => value,
|
||||||
:success => sh("export FOG_MOCK=#{mocked} && bundle exec shindont +#{provider.downcase}")
|
:success => sh("export FOG_MOCK=#{mocked} && bundle exec shindont +#{key}")
|
||||||
}
|
}
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Add table
Reference in a new issue