We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
make test
1 parent fc4f99a commit acb91e6Copy full SHA for acb91e6
Makefile
@@ -88,7 +88,7 @@ golangci-lint:
88
##@ Tests
89
90
.PHONY: test
91
-test: test-unit test-integration test-testdata ## Run the unit and integration tests (used in the CI)
+test: test-unit test-integration test-testdata test-book ## Run the unit and integration tests (used in the CI)
92
93
.PHONY: test-unit
94
test-unit: ## Run the unit tests
@@ -119,3 +119,7 @@ test-e2e-local: ## Run the end-to-end tests locally
119
.PHONY: test-e2e-ci
120
test-e2e-ci: ## Run the end-to-end tests (used in the CI)`
121
./test/e2e/ci.sh
122
+
123
+.PHONY: test-book
124
+test-book: ## Run the cronjob tutorial's unit tests to make sure we don't break it
125
+ cd ./docs/book/src/cronjob-tutorial/testdata/project && make test
0 commit comments