Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
B
brew
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to JiHu GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
KMSCAKKSCFKA AKFACAMADCAS
brew
Commits
92a39bc4
Unverified
Commit
92a39bc4
authored
4 years ago
by
Mike McQuaid
Browse files
Options
Downloads
Patches
Plain Diff
test: add flag to retry.
This should allow better handling flaky tests.
parent
126e4c9d
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
Library/Homebrew/dev-cmd/test.rb
+16
-1
16 additions, 1 deletion
Library/Homebrew/dev-cmd/test.rb
docs/Manpage.md
+2
-0
2 additions, 0 deletions
docs/Manpage.md
manpages/brew.1
+4
-0
4 additions, 0 deletions
manpages/brew.1
with
22 additions
and
1 deletion
Library/Homebrew/dev-cmd/test.rb
+
16
−
1
View file @
92a39bc4
...
@@ -25,6 +25,8 @@ module Homebrew
...
@@ -25,6 +25,8 @@ module Homebrew
description:
"Test the head version of a formula."
description:
"Test the head version of a formula."
switch
"--keep-tmp"
,
switch
"--keep-tmp"
,
description:
"Retain the temporary files created for the test."
description:
"Retain the temporary files created for the test."
switch
"--retry"
,
description:
"Retry if a testing fails."
switch
:verbose
switch
:verbose
switch
:debug
switch
:debug
conflicts
"--devel"
,
"--HEAD"
conflicts
"--devel"
,
"--HEAD"
...
@@ -70,7 +72,7 @@ module Homebrew
...
@@ -70,7 +72,7 @@ module Homebrew
next
next
end
end
puts
"Testing
#{
f
.
full_name
}
"
oh1
"Testing
#{
f
.
full_name
}
"
env
=
ENV
.
to_hash
env
=
ENV
.
to_hash
...
@@ -108,6 +110,7 @@ module Homebrew
...
@@ -108,6 +110,7 @@ module Homebrew
end
end
end
end
rescue
Exception
=>
e
# rubocop:disable Lint/RescueException
rescue
Exception
=>
e
# rubocop:disable Lint/RescueException
retry
if
retry_test?
(
f
)
ofail
"
#{
f
.
full_name
}
: failed"
ofail
"
#{
f
.
full_name
}
: failed"
puts
e
,
e
.
backtrace
puts
e
,
e
.
backtrace
ensure
ensure
...
@@ -115,4 +118,16 @@ module Homebrew
...
@@ -115,4 +118,16 @@ module Homebrew
end
end
end
end
end
end
def
retry_test?
(
f
)
@test_failed
||=
Set
.
new
if
args
.
retry?
&&
@test_failed
.
add?
(
f
)
oh1
"Testing
#{
f
.
full_name
}
(again)"
f
.
clear_cache
true
else
Homebrew
.
failed
=
true
false
end
end
end
end
This diff is collapsed.
Click to expand it.
docs/Manpage.md
+
2
−
0
View file @
92a39bc4
...
@@ -1036,6 +1036,8 @@ wrong with the installed formula.
...
@@ -1036,6 +1036,8 @@ wrong with the installed formula.
Test the head version of a formula.
Test the head version of a formula.
*
`--keep-tmp`
:
*
`--keep-tmp`
:
Retain the temporary files created for the test.
Retain the temporary files created for the test.
*
`--retry`
:
Retry if a testing fails.
### `tests` [*`options`*]
### `tests` [*`options`*]
...
...
This diff is collapsed.
Click to expand it.
manpages/brew.1
+
4
−
0
View file @
92a39bc4
...
@@ -1351,6 +1351,10 @@ Test the head version of a formula\.
...
@@ -1351,6 +1351,10 @@ Test the head version of a formula\.
\fB\-\-keep\-tmp\fR
\fB\-\-keep\-tmp\fR
Retain the temporary files created for the test\.
Retain the temporary files created for the test\.
.
.
.TP
\fB\-\-retry\fR
Retry if a testing fails\.
.
.SS "\fBtests\fR [\fIoptions\fR]"
.SS "\fBtests\fR [\fIoptions\fR]"
Run Homebrew\'s unit and integration tests\.
Run Homebrew\'s unit and integration tests\.
.
.
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment