This is an automated email from the ASF dual-hosted git repository. astefanutti pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel-k.git
commit 3a8d5c59a7c269c75d5fcc16d73bc4aa03b2902e Author: Antonin Stefanutti <[email protected]> AuthorDate: Wed Sep 1 14:54:22 2021 +0200 chore(e2e): Remove redundant Quarkus trait e2e test --- e2e/common/languages/yaml_test.go | 9 --------- 1 file changed, 9 deletions(-) diff --git a/e2e/common/languages/yaml_test.go b/e2e/common/languages/yaml_test.go index f97562e..3cfd598 100644 --- a/e2e/common/languages/yaml_test.go +++ b/e2e/common/languages/yaml_test.go @@ -44,15 +44,6 @@ func TestRunSimpleYamlExamples(t *testing.T) { Expect(Kamel("delete", "--all", "-n", ns).Execute()).To(Succeed()) }) - t.Run("run yaml Quarkus", func(t *testing.T) { - Expect(Kamel("run", "-n", ns, "--name", "yaml-quarkus", "files/yaml.yaml", "-t", "quarkus.enabled=true").Execute()).To(Succeed()) - Eventually(IntegrationPodPhase(ns, "yaml-quarkus"), TestTimeoutMedium).Should(Equal(v1.PodRunning)) - Eventually(IntegrationCondition(ns, "yaml-quarkus", camelv1.IntegrationConditionReady), TestTimeoutShort).Should(Equal(v1.ConditionTrue)) - Eventually(IntegrationLogs(ns, "yaml-quarkus"), TestTimeoutShort).Should(ContainSubstring("powered by Quarkus")) - Eventually(IntegrationLogs(ns, "yaml-quarkus"), TestTimeoutShort).Should(ContainSubstring("Magicstring!")) - Expect(Kamel("delete", "--all", "-n", ns).Execute()).To(Succeed()) - }) - t.Run("init run yaml", func(t *testing.T) { RunInitGeneratedExample(camelv1.LanguageYaml, ns, t) })
