Skip to content

Commit 13dc0e4

Browse files
committed
CMP-3739: Add a noop integration test target
We're setting up the ability to run integration tests that exercise how the library works against a real OpenShift cluster in openshift/release#69409. This commit adds a new make target so that we can run integration tests in isolation, making it easier to have dedicated jobs for specific test scenarios.
1 parent 0005390 commit 13dc0e4

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

Makefile

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,10 @@ test-coverage:
2222
go test ./... -coverprofile=coverage.out
2323
go tool cover -html=coverage.out -o coverage.html
2424

25+
# Run integration tests
26+
.PHONY: test-integration
27+
test-integration:
28+
@echo "Integration tests not implemented yet"
2529

2630
# Format code
2731
.PHONY: fmt
@@ -50,6 +54,7 @@ help:
5054
@echo "Build & Test:"
5155
@echo " test - Run tests"
5256
@echo " test-coverage - Run tests with coverage report"
57+
@echo " test-integration - Run integration tests (noop)"
5358
@echo ""
5459
@echo "Code Quality:"
5560
@echo " fmt - Format code"

0 commit comments

Comments
 (0)