Skip to content

Commit

Permalink
re-enable some tests
Browse files Browse the repository at this point in the history
  • Loading branch information
SoMuchForSubtlety committed Dec 16, 2022
1 parent 91d9dc0 commit eaef054
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 8 deletions.
8 changes: 1 addition & 7 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -101,18 +101,12 @@ subprojects {
if (System.properties['test.profile'] == 'podman') {
exclude '**/*DockerCompose*'
filter {
excludeTestsMatching '*AuthenticatedImagePullTest*'
excludeTestsMatching '*DockerNetworkModeTest*'
excludeTestsMatching '*AmbiguousImagePullTest*'
excludeTestsMatching '*ImagePullPolicyTest*'

excludeTestsMatching '*testThatAuthLocatorIsUsedForDockerComposePull'
excludeTestsMatching '*testMemoryLimitModified'
excludeTestsMatching '*testBuilder'
excludeTestsMatching '*testModifiers'
excludeTestsMatching '*shouldOnlyPublishExposedPorts'

excludeTestsMatching '*shouldReportOOMAfterWait'
excludeTestsMatching '*runCommandInsideDockerShouldNotFailIfImageDoesNotExistsLocally'
}

}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ public DockerImageName createImage(String originalImage, String tag) {
.withTag(tag);

// push the image to the registry
client.tagImageCmd(dummyImageId, imageName.asCanonicalNameString(), tag).exec();
client.tagImageCmd(dummyImageId, imageName.getUnversionedPart(), tag).exec();

client
.pushImageCmd(imageName.asCanonicalNameString())
Expand Down

0 comments on commit eaef054

Please sign in to comment.