summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHiroshi SHIBATA <hsbt@ruby-lang.org>2019-08-19 11:36:17 +0900
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2019-08-19 11:36:17 +0900
commitfaccc522d11f633ba402082ccc220fa0fd89b78f (patch)
tree0f4398e183820d7e3edba85e9698cff7069540c0
parent23007cb107169ab2d330522736c7df0a97f64388 (diff)
downloadbundler-faccc522d11f633ba402082ccc220fa0fd89b78f.tar.gz
Try to use RunTimeLogger for parallel_tests
-rw-r--r--.rspec_parallel4
-rw-r--r--spec/support/parallel.rb3
2 files changed, 7 insertions, 0 deletions
diff --git a/.rspec_parallel b/.rspec_parallel
new file mode 100644
index 0000000000..6989221a44
--- /dev/null
+++ b/.rspec_parallel
@@ -0,0 +1,4 @@
+--format progress
+--format ParallelTests::RSpec::RuntimeLogger --out tmp/parallel_runtime_rspec.log
+--require spec_helper
+--require support/parallel.rb
diff --git a/spec/support/parallel.rb b/spec/support/parallel.rb
new file mode 100644
index 0000000000..2c901fb408
--- /dev/null
+++ b/spec/support/parallel.rb
@@ -0,0 +1,3 @@
+RSpec.configure do |config|
+ config.silence_filter_announcements = true
+end