Skip to content

Commit d3ad7e5

Browse files
authored
fix: run e2e tests on next (#919)
1 parent 78a305b commit d3ad7e5

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

.github/workflows/e2e-test.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,11 @@
33
name: Integration & End to End tests
44
on:
55
pull_request:
6-
branches: [ main ]
6+
branches: [ main, next ]
77
push:
88
branches:
99
- main
10+
- next
1011

1112
jobs:
1213
sample_operators_tests:

sample-operators/mysql-schema/src/main/java/io/javaoperatorsdk/operator/sample/MySQLSchemaReconciler.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,11 @@
2323
import io.javaoperatorsdk.operator.sample.MySQLSchemaReconciler.SecretDependentResource;
2424
import io.javaoperatorsdk.operator.sample.schema.Schema;
2525

26+
import static io.javaoperatorsdk.operator.api.reconciler.Constants.NO_FINALIZER;
2627
import static java.lang.String.format;
2728

28-
@ControllerConfiguration(
29+
// todo handle this, should work with finalizer
30+
@ControllerConfiguration(finalizerName = NO_FINALIZER,
2931
dependents = {
3032
@Dependent(resourceType = Secret.class, type = SecretDependentResource.class),
3133
@Dependent(resourceType = Schema.class, type = SchemaDependentResource.class)

0 commit comments

Comments
 (0)