-
Notifications
You must be signed in to change notification settings - Fork 102
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
Update testcontainers version, set image name and version explicitly #923
Conversation
@@ -6,7 +6,7 @@ | |||
</encoder> | |||
</appender> | |||
|
|||
<root level="ERROR" additivity="false"> | |||
<root level="INFO" additivity="false"> |
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 makes logs a lot noisier but I think it's more likely to be what you want if you're actually trying to track down a problem in them.
@@ -66,7 +66,15 @@ abstract class BaseKafkaSpec extends BaseAsyncSpec with ForEachTestContainer { | |||
|
|||
override def runTest(testName: String, args: Args) = super.runTest(testName, args) | |||
|
|||
override val container: KafkaContainer = new KafkaContainer() | |||
private val imageVersion = "7.0.1" |
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.
Ideally we'd test against both the earliest and latest supported version
8eb6c27
to
5272208
Compare
Also adds support for running tests on Arm64