Skip to content

Commit 10f285a

Browse files
re-enable some tests
1 parent 431f7ce commit 10f285a

File tree

2 files changed

+2
-8
lines changed

2 files changed

+2
-8
lines changed

build.gradle

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -99,18 +99,12 @@ subprojects {
9999
if (System.properties['test.profile'] == 'podman') {
100100
exclude '**/*DockerCompose*'
101101
filter {
102-
excludeTestsMatching '*AuthenticatedImagePullTest*'
103102
excludeTestsMatching '*DockerNetworkModeTest*'
104-
excludeTestsMatching '*AmbiguousImagePullTest*'
105-
excludeTestsMatching '*ImagePullPolicyTest*'
106103

107-
excludeTestsMatching '*testThatAuthLocatorIsUsedForDockerComposePull'
108-
excludeTestsMatching '*testMemoryLimitModified'
109104
excludeTestsMatching '*testBuilder'
110105
excludeTestsMatching '*testModifiers'
111-
excludeTestsMatching '*shouldOnlyPublishExposedPorts'
106+
112107
excludeTestsMatching '*shouldReportOOMAfterWait'
113-
excludeTestsMatching '*runCommandInsideDockerShouldNotFailIfImageDoesNotExistsLocally'
114108
}
115109

116110
}

core/src/test/java/org/testcontainers/DockerRegistryContainer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ public DockerImageName createImage(String originalImage, String tag) {
100100
.withTag(tag);
101101

102102
// push the image to the registry
103-
client.tagImageCmd(dummyImageId, imageName.asCanonicalNameString(), tag).exec();
103+
client.tagImageCmd(dummyImageId, imageName.getUnversionedPart(), tag).exec();
104104

105105
client
106106
.pushImageCmd(imageName.asCanonicalNameString())

0 commit comments

Comments
 (0)