Skip to content

Commit

Permalink
Move check for plus usage endpoint to correct spot (#2904)
Browse files Browse the repository at this point in the history
Problem: #2902 moved check-for-plus-usage-endpoint dependency to the wrong Makefile target which caused the pipelines on main to fail.

Solution: Move check-for-plus-usage-endpoint` dependency to the right target.
  • Loading branch information
kate-osborn committed Dec 13, 2024
1 parent b99cc98 commit 160d35b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -146,8 +146,8 @@ test: build-crossplane-image ## Runs the functional tests on your kind k8s clust
--plus-license-file-name=$(PLUS_LICENSE_FILE) --plus-usage-endpoint=$(PLUS_USAGE_ENDPOINT)

.PHONY: test-with-plus
test-with-plus: check-for-plus-usage-endpoint PLUS_ENABLED=true
test-with-plus: test ## Runs the functional tests for NGF with NGINX Plus on your default k8s cluster
test-with-plus: PLUS_ENABLED=true
test-with-plus: check-for-plus-usage-endpoint test ## Runs the functional tests for NGF with NGINX Plus on your default k8s cluster

.PHONY: cleanup-gcp
cleanup-gcp: cleanup-router cleanup-vm delete-gke-cluster ## Cleanup all GCP resources
Expand Down

0 comments on commit 160d35b

Please sign in to comment.