File tree Expand file tree Collapse file tree 2 files changed +11
-7
lines changed Expand file tree Collapse file tree 2 files changed +11
-7
lines changed Original file line number Diff line number Diff line change @@ -653,5 +653,5 @@ function run_kapp() {
653653}
654654
655655function on_success() {
656- rm " ${ARTIFACTS} " / log-*
656+ find " ${ARTIFACTS} " -type d -name " log-*" -exec rm -rf {} +
657657}
Original file line number Diff line number Diff line change @@ -67,12 +67,16 @@ if (( SHORT )); then
6767 GO_TEST_FLAGS+=(" -short" )
6868fi
6969
70- go_test_e2e -timeout=40m \
71- " ${GO_TEST_FLAGS[@]} " \
72- ./test/conformance/api/... \
73- ./test/conformance/runtime/... \
74- ./test/e2e \
75- " ${E2E_TEST_FLAGS[@]} " || failed=1
70+ sleep 5
71+
72+ # go_test_e2e -timeout=40m \
73+ # "${GO_TEST_FLAGS[@]}" \
74+ # ./test/conformance/api/... \
75+ # ./test/conformance/runtime/... \
76+ # ./test/e2e \
77+ # "${E2E_TEST_FLAGS[@]}" || failed=1
78+
79+ fail_test
7680
7781toggle_feature tag-header-based-routing Enabled
7882go_test_e2e -timeout=2m ./test/e2e/tagheader " ${E2E_TEST_FLAGS[@]} " || failed=1
You can’t perform that action at this time.
0 commit comments