We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ed1d542 commit afc83deCopy full SHA for afc83de
bin/generate-abq-test-output.rb
@@ -6,17 +6,15 @@
6
FileUtils.rm file
7
end
8
9
+ENV['UPDATE_SNAPSHOTS'] = 'true'
10
threads = Dir['gemfiles/*.gemfile'].map do |gemfile|
11
Thread.new do
- ENV['BUNDLE_GEMFILE'] = gemfile
12
- ENV['UPDATE_SNAPSHOTS'] = 'true'
13
- puts(gemfile + ":" + `bundle exec rspec spec/features/integration_spec.rb`)
+ system({"BUNDLE_GEMFILE" => gemfile}, "bundle exec rspec spec/features/integration_spec.rb")
14
15
16
17
threads << Thread.new do
18
19
- puts(`bundle exec rspec spec/features/manifest_spec.rb`)
+ system("bundle exec rspec spec/features/manifest_spec.rb")
20
21
22
threads.map(&:join)
0 commit comments