Skip to content

Commit 902b111

Browse files
committed
remove directories
1 parent fad132e commit 902b111

File tree

2 files changed

+11
-7
lines changed

2 files changed

+11
-7
lines changed

test/e2e-common.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -653,5 +653,5 @@ function run_kapp() {
653653
}
654654

655655
function on_success() {
656-
rm "${ARTIFACTS}"/log-*
656+
find "${ARTIFACTS}" -type d -name "log-*" -exec rm -rf {} +
657657
}

test/e2e-tests.sh

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -67,12 +67,16 @@ if (( SHORT )); then
6767
GO_TEST_FLAGS+=("-short")
6868
fi
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

7781
toggle_feature tag-header-based-routing Enabled
7882
go_test_e2e -timeout=2m ./test/e2e/tagheader "${E2E_TEST_FLAGS[@]}" || failed=1

0 commit comments

Comments
 (0)