-
Notifications
You must be signed in to change notification settings - Fork 61
Do once-over on all SkipIf
s in codebase, adding issue numbers, un-skipping passing tests
#519
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 all commits
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 |
---|---|---|
|
@@ -36,7 +36,7 @@ func TestMembersLocal(t *testing.T) { | |
|
||
// sytest: Existing members see new members' presence | ||
t.Run("Existing members see new members' presence", func(t *testing.T) { | ||
runtime.SkipIf(t, runtime.Dendrite) // Still failing | ||
runtime.SkipIf(t, runtime.Dendrite) // FIXME: https://github.com/matrix-org/dendrite/issues/2803 | ||
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. #516 removes the line entirely, the PR might conflict The reason it can't be done here is because that PR also introduces changes to fix the test itself |
||
t.Parallel() | ||
alice.MustSyncUntil(t, client.SyncReq{}, | ||
client.SyncJoinedTo(bob.UserID, roomID), | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -54,7 +54,7 @@ func TestUploadKey(t *testing.T) { | |
|
||
// sytest: Rejects invalid device keys | ||
t.Run("Rejects invalid device keys", func(t *testing.T) { | ||
runtime.SkipIf(t, runtime.Dendrite, runtime.Synapse) // Dendrite doesn't pass, Synapse has it blacklisted | ||
runtime.SkipIf(t, runtime.Dendrite, runtime.Synapse) // Blacklisted on Synapse, Dendrite FIXME: https://github.com/matrix-org/dendrite/issues/2804 | ||
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. Is there a corresponding Synapse issue? 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. There is one in this repo: #517 I looked for one on synapse, but didn't open one there as I wasn't entirely sure what the reasoning was why these tests were blacklisted in the first place, so I opened one here to start that inquiry. 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. That's fine. 👍 Thanks. |
||
t.Parallel() | ||
// algorithms, keys and signatures are required fields, but missing | ||
reqBody := client.WithJSONBody(t, map[string]interface{}{ | ||
|
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 seems to be #499?
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 did not spot that, should I remove these changes so they don't conflict?
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 guess leave it, they'll conflict and they can fix it there.