Merge branch '31933-improve-rspec-profiling-enabling' into 'master'
Enable RSpec profiling only if RSPEC_PROFILING_POSTGRES_URL is not empty Closes #31933 See merge request !11543
This commit is contained in:
commit
9d29eb7e29
2 changed files with 2 additions and 2 deletions
|
@ -32,7 +32,7 @@ end
|
|||
|
||||
if Rails.env.test?
|
||||
RspecProfiling.configure do |config|
|
||||
if ENV['RSPEC_PROFILING_POSTGRES_URL']
|
||||
if ENV['RSPEC_PROFILING_POSTGRES_URL'].present?
|
||||
RspecProfiling::Collectors::PSQL.prepend(RspecProfilingExt::PSQL)
|
||||
config.collector = RspecProfiling::Collectors::PSQL
|
||||
end
|
||||
|
|
|
@ -10,7 +10,7 @@ require 'shoulda/matchers'
|
|||
require 'rspec/retry'
|
||||
|
||||
rspec_profiling_is_configured =
|
||||
ENV['RSPEC_PROFILING_POSTGRES_URL'] ||
|
||||
ENV['RSPEC_PROFILING_POSTGRES_URL'].present? ||
|
||||
ENV['RSPEC_PROFILING']
|
||||
branch_can_be_profiled =
|
||||
ENV['GITLAB_DATABASE'] == 'postgresql' &&
|
||||
|
|
Loading…
Reference in a new issue