Skip to content

Commit

Permalink
Bump test containers 1.20.1 + Mysql 8.0
Browse files Browse the repository at this point in the history
Signed-off-by: Paolo Di Tommaso <[email protected]>
  • Loading branch information
pditommaso committed Aug 8, 2024
1 parent c131b38 commit b654e70
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ dependencies {
testImplementation "org.spockframework:spock-core"
testImplementation "org.spockframework:spock-junit4" // you can remove this if your code does not rely on old JUnit 4 rules
testImplementation 'junit:junit:4.13'
testImplementation "org.testcontainers:testcontainers:1.16.3"
testImplementation "org.testcontainers:testcontainers:1.20.1"
testImplementation "org.testcontainers:mysql:1.16.3"
testImplementation "org.testcontainers:spock:1.16.3"

Expand Down
2 changes: 1 addition & 1 deletion src/test/groovy/io/seqera/migtool/MysqlTest.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class MysqlTest extends Specification {
static MySQLContainer container

static {
container = new MySQLContainer("mysql:5.6")
container = new MySQLContainer("mysql:8.0")
// start it -- note: it's stopped automatically
// https://www.testcontainers.org/test_framework_integration/manual_lifecycle_control/
container.start()
Expand Down

0 comments on commit b654e70

Please sign in to comment.