-
Notifications
You must be signed in to change notification settings - Fork 119
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add ignore failed tests option to Flank #708
Conversation
Codecov Report
@@ Coverage Diff @@
## master #708 +/- ##
============================================
- Coverage 78.61% 78.60% -0.02%
- Complexity 661 664 +3
============================================
Files 113 113
Lines 2661 2673 +12
Branches 379 381 +2
============================================
+ Hits 2092 2101 +9
- Misses 321 322 +1
- Partials 248 250 +2 |
README.md
Outdated
@@ -170,6 +170,9 @@ flank: | |||
|
|||
## The max time this test run can execute before it is cancelled (default: unlimited). | |||
# run-timeout: 60m | |||
|
|||
## Set true to end with exit code 0 despite of failed matrices. False by default. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
## Terminate with exit code 0 when there are failed tests. Useful for Fladle and other gradle plugins that don't expect the process to have a non-zero exit code. The JUnit XML is used to determine failure. (default: false)
What do you think of this more verbose description?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Perfect, updated!
@@ -56,7 +59,8 @@ class FlankYmlParams( | |||
"project", | |||
"local-result-dir", | |||
"run-timeout", | |||
"legacy-junit-result" | |||
"legacy-junit-result", | |||
"ignoreFailedTests" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think the key is ignore-failed-tests
Fixes #602
Checklist