diff --git a/Makefile b/Makefile index d45eb6963..dfef9bff7 100644 --- a/Makefile +++ b/Makefile @@ -121,8 +121,11 @@ test-python: ## Test Python templates cd templates/python/http && python3 test_func.py && rm -rf __pycache__ test-quarkus: ## Test Quarkus templates - cd templates/quarkus/cloudevents && mvn test && mvn clean - cd templates/quarkus/http && mvn test && mvn clean + # Quarkus Template Tests are temporarily disabled + # see: https://github.com/knative/func/issues/1711 + # + # cd templates/quarkus/cloudevents && mvn test && mvn clean + # cd templates/quarkus/http && mvn test && mvn clean test-springboot: ## Test Spring Boot templates cd templates/springboot/cloudevents && mvn test && mvn clean diff --git a/test/e2e/scenario_runtime-cloudevents_test.go b/test/e2e/scenario_runtime-cloudevents_test.go index 0867d2e39..eba6314ca 100644 --- a/test/e2e/scenario_runtime-cloudevents_test.go +++ b/test/e2e/scenario_runtime-cloudevents_test.go @@ -87,11 +87,15 @@ var ceFuncValidatorMap = map[string]CloudEventsFuncResponsivenessValidator{ bodyData: "hello", expects: "", }, - "quarkus": { - contentType: "application/json", - bodyData: `{"message":"hello"}`, - expects: "", - }, + // Temporarily disable quarkus tests. + // see https://github.com/knative/func/issues/1711 + /* + "quarkus": { + contentType: "application/json", + bodyData: `{"message":"hello"}`, + expects: "", + }, + */ "springboot": { contentType: "text/plain", bodyData: "hello function", diff --git a/test/e2e/scenario_runtime-http_test.go b/test/e2e/scenario_runtime-http_test.go index 1113a2652..369e8560f 100644 --- a/test/e2e/scenario_runtime-http_test.go +++ b/test/e2e/scenario_runtime-http_test.go @@ -17,10 +17,12 @@ import ( ) var runtimeSupportMap = map[string][]string{ - "node": {"pack", "s2i"}, - "go": {"pack"}, - "python": {"pack", "s2i"}, - "quarkus": {"pack", "s2i"}, + "node": {"pack", "s2i"}, + "go": {"pack"}, + "python": {"pack", "s2i"}, + // Temporarily disable quarkus tests. + // see: https://github.com/knative/func/issues/1711 + // "quarkus": {"pack", "s2i"}, "springboot": {"pack"}, "typescript": {"pack", "s2i"}, } diff --git a/test/oncluster/scenario_runtime_test.go b/test/oncluster/scenario_runtime_test.go index 31fd4c608..9a4fafc1b 100644 --- a/test/oncluster/scenario_runtime_test.go +++ b/test/oncluster/scenario_runtime_test.go @@ -15,10 +15,12 @@ import ( ) var runtimeSupportMap = map[string][]string{ - "node": {"pack", "s2i"}, - "go": {}, - "python": {"pack", "s2i"}, - "quarkus": {"pack", "s2i"}, + "node": {"pack", "s2i"}, + "go": {}, + "python": {"pack", "s2i"}, + // Temporarily disable Quarkus tests. + // see: https://github.com/knative/func/issues/1711 + // "quarkus": {"pack", "s2i"}, "springboot": {"pack"}, "typescript": {"pack", "s2i"}, }