Commit abd1a8a
committed
fix: Add e2e build tag to Makefile test-e2e target
The test-e2e target was failing because it didn't include the -tags=e2e
build flag required by the E2E test files. All E2E test files have the
//go:build e2e directive, so the go test command needs -tags=e2e to
discover and run them.
Changes:
- Makefile:221: Added -tags=e2e to go test command
This enables running E2E tests with:
make test-e2e
Related to Task #3765: E2E cluster readiness validation1 parent 9881de0 commit abd1a8a
1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
218 | 218 | | |
219 | 219 | | |
220 | 220 | | |
221 | | - | |
| 221 | + | |
222 | 222 | | |
223 | 223 | | |
224 | 224 | | |
| |||
0 commit comments