Skip to content

Commit 8840c9b

Browse files
committed
Add missing Disabled annotation on some IT (oras-project#597)
Signed-off-by: Valentin Delaye <jonesbusy@users.noreply.github.com>
1 parent e67d375 commit 8840c9b

3 files changed

Lines changed: 12 additions & 0 deletions

File tree

src/test/java/land/oras/HarborS3ITCase.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ class HarborS3ITCase {
5151
* This test demonstrate how to assemble a Flux CD OCI Artifact
5252
*/
5353
@Test
54+
@Disabled
5455
void shouldPushHelmArtifact() {
5556

5657
// The compressed manifests

src/test/java/land/oras/NexusITCase.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
import java.util.List;
2828
import java.util.Map;
2929
import land.oras.utils.Const;
30+
import org.junit.jupiter.api.Disabled;
3031
import org.junit.jupiter.api.Test;
3132
import org.junit.jupiter.api.parallel.Execution;
3233
import org.junit.jupiter.api.parallel.ExecutionMode;
@@ -36,7 +37,9 @@
3637
*/
3738
@Execution(ExecutionMode.CONCURRENT)
3839
class NexusITCase {
40+
3941
@Test
42+
@Disabled
4043
void shouldPushHelmArtifact() {
4144

4245
// The compressed manifests

src/test/java/land/oras/PublicECRITCase.java

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
import java.nio.file.Files;
2626
import java.nio.file.Path;
2727
import java.util.List;
28+
import org.junit.jupiter.api.Disabled;
2829
import org.junit.jupiter.api.Test;
2930
import org.junit.jupiter.api.io.TempDir;
3031
import org.junit.jupiter.api.parallel.Execution;
@@ -38,6 +39,7 @@ class PublicECRITCase {
3839
private static Path homeDir;
3940

4041
@Test
42+
@Disabled
4143
void shouldDetermineEffectiveRegistryWithUnqualifiedSettings() throws Exception {
4244

4345
// language=toml
@@ -56,6 +58,7 @@ void shouldDetermineEffectiveRegistryWithUnqualifiedSettings() throws Exception
5658
}
5759

5860
@Test
61+
@Disabled
5962
void shouldRewriteDockerIOToPublicECR() throws Exception {
6063

6164
// language=toml
@@ -88,6 +91,7 @@ void shouldRewriteDockerIOToPublicECR() throws Exception {
8891
}
8992

9093
@Test
94+
@Disabled
9195
void shouldDetermineEffectiveRegistry() {
9296

9397
// Use from container ref
@@ -111,6 +115,7 @@ void shouldDetermineEffectiveRegistry() {
111115
}
112116

113117
@Test
118+
@Disabled
114119
void shouldPullAnonymousIndexAndFilterPlatform() {
115120

116121
// Via tag
@@ -138,6 +143,7 @@ void shouldPullAnonymousIndexAndFilterPlatform() {
138143
}
139144

140145
@Test
146+
@Disabled
141147
void shouldPullAnonymousIndexViaDigest() {
142148

143149
Registry registry = Registry.builder().build();
@@ -150,6 +156,7 @@ void shouldPullAnonymousIndexViaDigest() {
150156
}
151157

152158
@Test
159+
@Disabled
153160
void shouldPullManifest() {
154161

155162
// Via tag
@@ -167,6 +174,7 @@ void shouldPullManifest() {
167174
}
168175

169176
@Test
177+
@Disabled
170178
void shouldPullLayer() {
171179
Registry registry = Registry.builder().build();
172180
ContainerRef containerRef = ContainerRef.parse(

0 commit comments

Comments
 (0)