Skip to content

Bump org.postgresql:postgresql from 42.7.4 to 42.7.5 in /modules/cockroachdb #9832

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

Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion modules/cockroachdb/build.gradle
Original file line number Diff line number Diff line change
@@ -4,6 +4,6 @@ dependencies {
api project(':jdbc')

testImplementation project(':jdbc-test')
testRuntimeOnly 'org.postgresql:postgresql:42.7.4'
testRuntimeOnly 'org.postgresql:postgresql:42.7.5'
testImplementation 'org.assertj:assertj-core:3.26.3'
}

Unchanged files with check annotations Beta

final boolean isVolumePresentAfterRunning = isVolumePresent(volumeName.get());
assertThat(isVolumePresentAfterRunning)
.as("the container volume is present after running")
.isEqualTo(this.shouldVolumesBePresentAfterRunning);

Check failure on line 61 in core/src/test/java/org/testcontainers/junit/ComposeContainerVolumeRemovalTest.java

GitHub Actions / core (17)

ComposeContainerVolumeRemovalTest.performTest[removeVolumes = false]

org.junit.ComparisonFailure: [the container volume is present after running] expected:<[tru]e> but was:<[fals]e>

Check failure on line 61 in core/src/test/java/org/testcontainers/junit/ComposeContainerVolumeRemovalTest.java

GitHub Actions / core (21)

ComposeContainerVolumeRemovalTest.performTest[removeVolumes = false]

org.junit.ComparisonFailure: [the container volume is present after running] expected:<[tru]e> but was:<[fals]e>
});
}
for (int i = 0; i < 3; i++) {
clients[i].incr("somekey");
assertThat(clients[i].get("somekey")).as("Each redis instance is separate").isEqualTo("1");

Check failure on line 54 in core/src/test/java/org/testcontainers/junit/DockerComposeContainerScalingTest.java

GitHub Actions / core (17)

DockerComposeContainerScalingTest.simpleTest

org.junit.ComparisonFailure: [Each redis instance is separate] expected:<"[1]"> but was:<"[2]">

Check failure on line 54 in core/src/test/java/org/testcontainers/junit/DockerComposeContainerScalingTest.java

GitHub Actions / core (21)

DockerComposeContainerScalingTest.simpleTest

org.junit.ComparisonFailure: [Each redis instance is separate] expected:<"[1]"> but was:<"[2]">
}
}
}
@Test
public void testBasicContainerUsageForEnterpriseContainerRecent() {
testBasicContainerUsage(COUCHBASE_IMAGE_ENTERPRISE_RECENT);

Check failure on line 50 in modules/couchbase/src/test/java/org/testcontainers/couchbase/CouchbaseContainerTest.java

GitHub Actions / check (:couchbase:check)

CouchbaseContainerTest.testBasicContainerUsageForEnterpriseContainerRecent

org.testcontainers.containers.ContainerLaunchException: Container startup failed for image couchbase/server:enterprise-7.6.2
}
@Test
LgtmStackContainer lgtm = new LgtmStackContainer("grafana/otel-lgtm:0.6.0")
// }
) {
lgtm.start();

Check failure on line 26 in modules/grafana/src/test/java/org/testcontainers/grafana/LgtmStackContainerTest.java

GitHub Actions / check (:grafana:check)

LgtmStackContainerTest.shouldPublishMetric

org.testcontainers.containers.ContainerLaunchException: Container startup failed for image grafana/otel-lgtm:0.6.0
String version = RestAssured
.get(String.format("http://%s:%s/api/health", lgtm.getHost(), lgtm.getMappedPort(3000)))