Disable broken operator test instead of entire suite (#33118)
Signed-off-by: Jon Koops <jonkoops@gmail.com>
This commit is contained in:
parent
42cde0cfdd
commit
fa08cef8ef
2 changed files with 2 additions and 2 deletions
2
.github/workflows/operator-ci.yml
vendored
2
.github/workflows/operator-ci.yml
vendored
|
@ -99,8 +99,6 @@ jobs:
|
|||
test-remote:
|
||||
name: Test remote
|
||||
runs-on: ubuntu-latest
|
||||
# The remote job is broken and holding up other PRs.
|
||||
if: false
|
||||
needs: [build]
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
|
|
@ -36,6 +36,7 @@ import io.quarkus.test.junit.QuarkusTest;
|
|||
|
||||
import org.awaitility.Awaitility;
|
||||
import org.junit.jupiter.api.Assumptions;
|
||||
import org.junit.jupiter.api.Disabled;
|
||||
import org.junit.jupiter.api.Test;
|
||||
import org.junit.jupiter.api.condition.EnabledIfSystemProperty;
|
||||
import org.keycloak.operator.Config;
|
||||
|
@ -389,6 +390,7 @@ public class KeycloakDeploymentTest extends BaseOperatorTest {
|
|||
}
|
||||
|
||||
@Test
|
||||
@Disabled
|
||||
public void testPodNamePropagation() {
|
||||
var kc = getTestKeycloakDeployment(true);
|
||||
var featureSpec = new FeatureSpec();
|
||||
|
|
Loading…
Reference in a new issue