Skip to content
Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/conformance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ jobs:
run: |
go mod download
REPO_VERSION=$(git describe --always --dirty)
go test -v ./conformance -run TestConformanceProfiles -args --conformance-profiles=ClusterNetworkPolicy --organization=kubernetes --project=kube-network-policies --url=https://github.com/kubernetes-sigs/kube-network-policies --version=${REPO_VERSION} --contact=https://github.com/kubernetes-sigs/kube-network-policies/issues/new --additional-info=https://github.com/kubernetes-sigs/kube-network-policies
go test -v ./conformance -run TestConformanceProfiles -timeout 20m -args --conformance-profiles=ClusterNetworkPolicy --organization=kubernetes --project=kube-network-policies --url=https://github.com/kubernetes-sigs/kube-network-policies --version=${REPO_VERSION} --contact=https://github.com/kubernetes-sigs/kube-network-policies/issues/new --additional-info=https://github.com/kubernetes-sigs/kube-network-policies

- name: Upload Junit Reports
if: always()
Expand Down
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -59,17 +59,17 @@ crd-e2e: ## Run the CRD e2e tests.
.PHONY: conformance
conformance: ## Run the conformance tests.
go test ${GO_TEST_FLAGS} -v ./conformance \
-run '^TestConformance$$' -args ${CONFORMANCE_FLAGS}
-run '^TestConformance$$' -timeout 20m -args ${CONFORMANCE_FLAGS}

.PHONY: conformance-profiles
conformance-profiles: ## Run the conformance profiles.
go test ${GO_TEST_FLAGS} -v ./conformance \
-run '^TestConformanceProfiles$$' -args ${CONFORMANCE_FLAGS}
-run '^TestConformanceProfiles$$' -timeout 20m -args ${CONFORMANCE_FLAGS}

.PHONY: conformance-profiles-default
conformance-profiles-default: ## Run the default conformance profile.
go test ${GO_TEST_FLAGS} -v ./conformance \
-run '^TestConformanceProfiles$$' -args \
-run '^TestConformanceProfiles$$' -timeout 20m -args \
--conformance-profiles=ClusterNetworkPolicy

##@ Deployment
Expand Down
Loading