Skip to content

Commit

Permalink
fix: exclude confidential container test (#680)
Browse files Browse the repository at this point in the history
  • Loading branch information
smritidahal653 authored Nov 14, 2024
1 parent 933672f commit 24dee84
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -105,15 +105,15 @@ e2e-test:
IMG_URL=$(REGISTRY) IMG_REPO=$(IMG_NAME) IMG_TAG=$(IMG_TAG) \
INIT_IMG_REPO=$(INIT_IMG_NAME) INIT_IMG_TAG=$(INIT_IMG_TAG) \
LOCATION=$(LOCATION) RESOURCE_GROUP=$(E2E_CLUSTER_NAME) \
$(AKS_E2E_SCRIPT) go test -timeout 90m -v ./e2e
$(AKS_E2E_SCRIPT) go test -timeout 90m -v ./e2e --tags=skip

.PHONY: aks-addon-e2e-test
aks-addon-e2e-test:
PR_RAND=$(PR_COMMIT_SHA) E2E_TARGET=$(E2E_TARGET) \
IMG_URL=$(REGISTRY) IMG_REPO=$(IMG_NAME) IMG_TAG=$(IMG_TAG) \
INIT_IMG_REPO=$(INIT_IMG_NAME) INIT_IMG_TAG=$(INIT_IMG_TAG) \
LOCATION=$(LOCATION) RESOURCE_GROUP=$(E2E_CLUSTER_NAME) \
$(AKS_ADDON_E2E_SCRIPT) go test -timeout 90m -v ./e2e
$(AKS_ADDON_E2E_SCRIPT) go test -timeout 90m -v ./e2e --tags=skip

.PHONY: vet
vet:
Expand Down
5 changes: 5 additions & 0 deletions e2e/confidential_container_test.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
//go:build !skip

// skipping this test due to a regression with Plan9 mounts in the containerd package
// will include this test back once the fix is available

/*
Copyright (c) Microsoft Corporation.
Licensed under the Apache 2.0 license.
Expand Down

0 comments on commit 24dee84

Please sign in to comment.