Skip to content

Commit

Permalink
Merge pull request #3426 from aws/dongie/disable-migration-tool-test
Browse files Browse the repository at this point in the history
Disable migration tool test for being flaky
  • Loading branch information
dagnir authored Nov 11, 2024
2 parents 6ab30b5 + 774a36a commit 2a972bc
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
import java.util.List;
import org.apache.commons.io.FileUtils;
import org.junit.jupiter.api.BeforeAll;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.condition.EnabledIf;
import software.amazon.awssdk.testutils.SdkVersionUtils;
Expand Down Expand Up @@ -68,7 +69,8 @@ private static void deleteTempDirectories() throws IOException {
}

@Test
@EnabledIf("versionAvailable")
// @EnabledIf("versionAvailable")
@Disabled("Test is flaky")
void mavenProject_shouldConvert() throws IOException {
verifyTransformation();
verifyCompilation();
Expand Down

0 comments on commit 2a972bc

Please sign in to comment.