Commit e0e208ab authored by Rémy Coutable's avatar Rémy Coutable

When on CI, enable RSpec profiling for `master` only

We don't actually need to monitor RSpec for all our branches.
Signed-off-by: default avatarRémy Coutable <remy@rymai.me>
parent f23b35b0
......@@ -9,7 +9,8 @@ require 'rspec/rails'
require 'shoulda/matchers'
require 'rspec/retry'
if ENV['RSPEC_PROFILING_POSTGRES_URL'] || ENV['RSPEC_PROFILING']
if (ENV['RSPEC_PROFILING_POSTGRES_URL'] || ENV['RSPEC_PROFILING']) &&
(!ENV.has_key?('CI') || ENV['CI_COMMIT_REF_NAME'] == 'master')
require 'rspec_profiling/rspec'
end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment