-
Notifications
You must be signed in to change notification settings - Fork 887
chore: skip some flaky tests #1643
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
Conversation
@@ -23,6 +23,7 @@ import ( | |||
) | |||
|
|||
func TestSSH(t *testing.T) { | |||
t.Skip("This is causing test flakes. TODO @cian fix this") |
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.
Is there an issue filed for this? Maybe link it in a comment?
|
When I ran the postgres tests locally, they were working fine with a postgresql service running via Homebrew.
|
I'm experimenting reducing the level of parallelism in the postgres tests. |
I also added some Makefile targets so we can more easily run the full-fat test suite and dig into these sorts of things locally. |
* chore: skip some flaky tests * Update peer/conn_test.go * add makefile targets, reduce parallelism in go test
I ran
gotestsum
a few times and skipped some tests that flaked out.This is not a long-term solution. We still need to fix these.