Skip to content

Commit 423723f

Browse files
committed
remove test --fail-fast from the Makefile
1 parent 8d6b540 commit 423723f

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ test:
1919
./gradlew --console=colored :operator:clean :operator:test --rerun-tasks
2020

2121
test-pg18:
22-
./gradlew --console=colored :operator:clean :operator:test --fail-fast --rerun-tasks -Dquarkus.test.profile=test-pg18
22+
./gradlew --console=colored :operator:clean :operator:test --rerun-tasks -Dquarkus.test.profile=test-pg18
2323

2424
test-pg17:
2525
./gradlew --console=colored :operator:clean :operator:test --rerun-tasks -Dquarkus.test.profile=test-pg17

operator/src/test/java/it/aboutbits/postgresql/crd/grant/GrantReconcilerTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -734,7 +734,7 @@ void grantOnTable(
734734
);
735735
}
736736

737-
@SuppressWarnings("CheckStyle:MethodLength")
737+
@SuppressWarnings("checkstyle:MethodLength")
738738
@ParameterizedTest
739739
@MethodSource("provideAllSupportedPrivileges")
740740
@DisplayName("Should grant and revoke privileges on all tables")
@@ -1053,7 +1053,7 @@ void grantOnSequence() {
10531053
);
10541054
}
10551055

1056-
@SuppressWarnings("CheckStyle:MethodLength")
1056+
@SuppressWarnings("checkstyle:MethodLength")
10571057
@Test
10581058
@DisplayName("Should grant and revoke privileges on all sequences")
10591059
void grantOnAllSequences() {

0 commit comments

Comments
 (0)