-
Notifications
You must be signed in to change notification settings - Fork 362
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 comment for cosmosdb.go tests #8477
Conversation
pkg/testutil/cosmosdb.go
Outdated
@@ -61,6 +61,7 @@ func GetCosmosDBInstance() (string, func(), error) { | |||
|
|||
dockerPool.MaxWait = maxWait | |||
log.Printf("Waiting up to %v for emulator to start", dockerPool.MaxWait) | |||
// Note: this hangs for Apple chip users, and fails. See https://github.com/treeverse/lakeFS/issues/8476 |
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 recommend going with @N-o-Z suggestion to skip this test for Mac users by adding this
if
statement:
if runtime.GOOS == "darwin" {
// skip test with message
}
- I don't think this is an Apple chip issue, this is an OS issue
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 don't want to block this, but please take a look at my comment before merging 🙏
This reverts commit b1309f5.
@itaigilo Why did we revert the code that skips the test for Mac? |
@itaigilo You need to rebase over latest master |
Re #8476.