-
Notifications
You must be signed in to change notification settings - Fork 1k
Fix latest dep tests #15429
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
Fix latest dep tests #15429
Conversation
| SERVER_PORT, | ||
| NETWORK_PEER_ADDRESS, | ||
| NETWORK_PEER_PORT)); | ||
| if (Boolean.getBoolean("testLatestDeps")) { |
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.
somehow missed this while fixing lettuce latest dep test failures
|
|
||
| testImplementation("org.springframework.boot:spring-boot-starter-web:$springBootVersion") | ||
| testImplementation("org.springframework.boot:spring-boot-starter-test:$springBootVersion") { | ||
| testLibrary("org.springframework.boot:spring-boot-starter-web:$springBootVersion") |
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.
previously we weren't testing the latest version here
|
|
||
| testImplementation("org.springframework.boot:spring-boot-starter-web:3.0.0") | ||
| testImplementation("org.springframework.boot:spring-boot-starter-test:3.0.0") | ||
| testLibrary("org.springframework.boot:spring-boot-starter-web:3.0.0") |
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.
previously we weren't testing the latest version here
Limit spring boot version to fix latest dep tests. It might be easier to work on actually fixing these when the build passes. Then it is easier to spot other new failures from unrelated library updates.
Related to #14906