Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
b1116a90
Commit
b1116a90
authored
Mar 07, 2017
by
Nick Thomas
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Swallow collection errors in RspecProfiling
parent
6a52cda3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
28 additions
and
9 deletions
+28
-9
config/initializers/rspec_profiling.rb
config/initializers/rspec_profiling.rb
+28
-9
No files found.
config/initializers/rspec_profiling.rb
View file @
b1116a90
module
RspecProfilingConnection
def
establish_connection
::
RspecProfiling
::
Collectors
::
PSQL
::
Result
.
establish_connection
(
ENV
[
'RSPEC_PROFILING_POSTGRES_URL'
])
module
RspecProfilingExt
module
PSQL
def
establish_connection
::
RspecProfiling
::
Collectors
::
PSQL
::
Result
.
establish_connection
(
ENV
[
'RSPEC_PROFILING_POSTGRES_URL'
])
end
end
end
module
RspecProfilingGitBranchCi
def
branch
ENV
[
'CI_BUILD_REF_NAME'
]
||
super
module
Git
def
branch
ENV
[
'CI_BUILD_REF_NAME'
]
||
super
end
end
module
Run
def
example_finished
(
*
args
)
super
rescue
=>
err
return
if
@already_logged_example_finished_error
$stderr
.
puts
"rspec_profiling couldn't collect an example:
#{
err
}
. Further warnings suppressed."
@already_logged_example_finished_error
=
true
end
alias_method
:example_passed
,
:example_finished
alias_method
:example_failed
,
:example_finished
end
end
if
Rails
.
env
.
test?
RspecProfiling
.
configure
do
|
config
|
if
ENV
[
'RSPEC_PROFILING_POSTGRES_URL'
]
RspecProfiling
::
Collectors
::
PSQL
.
prepend
(
RspecProfiling
Connection
)
RspecProfiling
::
Collectors
::
PSQL
.
prepend
(
RspecProfiling
Ext
::
PSQL
)
config
.
collector
=
RspecProfiling
::
Collectors
::
PSQL
end
end
RspecProfiling
::
VCS
::
Git
.
prepend
(
RspecProfilingGitBranchCi
)
if
ENV
.
has_key?
(
'CI'
)
if
ENV
.
has_key?
(
'CI'
)
RspecProfiling
::
VCS
::
Git
.
prepend
(
RspecProfilingExt
::
Git
)
RspecProfiling
::
Run
.
prepend
(
RspecProfilingExt
::
Run
)
end
end
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment