-
Notifications
You must be signed in to change notification settings - Fork 3.5k
tests(health api): extract specific assertions from list validator #18937
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
Changes from 1 commit
867dd60
1512586
46f381d
eb5465e
2f7cb7f
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||
|---|---|---|---|---|
|
|
@@ -24,6 +24,7 @@ expectation: | |||
| diagnosis: | ||||
| - cause: "pipeline is not running, likely because it has encountered an error" | ||||
| action: "view logs to determine the cause of abnormal pipeline shutdown" | ||||
| help_url: { $include: "health-report-pipeline-" } | ||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Initial implementation was to validate make sure
Will you have another change with a new test which expects
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We can, but I'd prefer to keep that scope expansion out of this PR and follow up separately. |
||||
| impacts: | ||||
| - description: "the pipeline is not currently processing" | ||||
| impact_areas: ["pipeline_execution"] | ||||
|
|
||||
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.
none of the current validators actually require unordered comparison, so the replacement does ordered comparison. If/when we need that, we can add an
$unorderedmatcher like the new$includematcher to do the unordered matching.