-
Notifications
You must be signed in to change notification settings - Fork 891
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
GODRIVER-2943 Skip failing logging tests #1350
Conversation
Huh, I accidentally pushed the branch to upstream, which is why the PR report fails. |
@@ -61,6 +62,7 @@ var ( | |||
"CreateCollection from encryptedFields.": godriver2413SkipReason, | |||
"DropCollection from encryptedFields": godriver2413SkipReason, | |||
"DropCollection from remote encryptedFields": godriver2413SkipReason, | |||
"Topology LifeCycle": godriver2943SkipReason, |
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.
Do we have a description of "Topology LifeCycle" used in any spec test?
Also, did you run the "go fmt" to help align the key-value pair? EG "static-analysis" is complaining about the format. You may find some IDE plugins to format the lines automatically.
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.
Ah, it should be Topology lifecycle
:
mongo/integration/unified_spec_test.go: "Topology lifecycle": godriver2943SkipReason,
testdata/server-discovery-and-monitoring/unified/logging-loadbalanced.json: "description": "Topology lifecycle",
testdata/server-discovery-and-monitoring/unified/logging-loadbalanced.yml: - description: "Topology lifecycle"
testdata/server-discovery-and-monitoring/unified/logging-replicaset.json: "description": "Topology lifecycle",
testdata/server-discovery-and-monitoring/unified/logging-replicaset.yml: - description: "Topology lifecycle"
testdata/server-discovery-and-monitoring/unified/logging-sharded.json: "description": "Topology lifecycle",
testdata/server-discovery-and-monitoring/unified/logging-sharded.yml: - description: "Topology lifecycle"
testdata/server-discovery-and-monitoring/unified/logging-standalone.json: "description": "Topology lifecycle",
testdata/server-discovery-and-monitoring/unified/logging-standalone.yml: - description: "Topology lifecycle"
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.
LGTM
Hmm, it isn't actually skipping the test yet... |
@@ -61,6 +62,7 @@ var ( | |||
"CreateCollection from encryptedFields.": godriver2413SkipReason, | |||
"DropCollection from encryptedFields": godriver2413SkipReason, | |||
"DropCollection from remote encryptedFields": godriver2413SkipReason, | |||
"Topology_lifecycle": godriver2943SkipReason, |
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.
This should not contain an underscore, it should be "Topology lifecycle"
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.
The tests weren't skipped with "Topology lifecycle" either.
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.
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.
Also, can you include a comment with the greener build ticket?
// GODRIVER-2943: Fix failing logging tests
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.
Fixed!
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.
Good! TIL
GODRIVER-2943
Summary
Skip failing logging test for now, to be picked up in Green Build.
Background & Motivation
Get builds green in PRs to avoid masking other errors.