This is an automated email from the ASF dual-hosted git repository. tsato pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel-k.git
commit 158dae79bbe715e59401b71876b109033197cb27 Author: Tadayoshi Sato <[email protected]> AuthorDate: Wed Mar 23 14:38:25 2022 +0900 chore(e2e): temporarily disable flaky local e2e test --- e2e/local/local_run_test.go | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/e2e/local/local_run_test.go b/e2e/local/local_run_test.go index 86d7391..e016b01 100644 --- a/e2e/local/local_run_test.go +++ b/e2e/local/local_run_test.go @@ -23,6 +23,7 @@ package local import ( "context" "io" + "os" "strings" "testing" @@ -90,6 +91,10 @@ func TestLocalRunContainerize(t *testing.T) { func TestLocalRunIntegrationDirectory(t *testing.T) { RegisterTestingT(t) + if os.Getenv("CI") == "true" { + t.Skip("TODO: Temporarily disabled as this test is flaky and hangs the test process") + } + ctx1, cancel1 := context.WithCancel(TestContext) defer cancel1()
