Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Break tests #3435

Draft
wants to merge 2 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions components/provisioner/e2e_test/main_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -172,6 +172,10 @@ type testConfig struct {
}

func TestName(t *testing.T) {

t.FailNow()
return

if os.Getenv("APP_GARDENER_KUBECONFIG_PATH") == "" {
t.SkipNow()
}
Expand Down
6 changes: 2 additions & 4 deletions components/provisioner/e2e_test/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,8 @@ function ensure_exists {
}

function cleanup {
if docker ps | grep $POSTGRES_CONTAINER; then
docker kill $POSTGRES_CONTAINER
docker network rm $POSTGRES_NETWORK
fi
docker kill $POSTGRES_CONTAINER || true
docker network rm $POSTGRES_NETWORK || true
if ! [[ -z $PROVISIONER_PID ]]; then
kill $PROVISIONER_PID
unset PROVISIONER_PID
Expand Down
Loading