Add test target that ignores tmp helpers
This commit is contained in:
parent
f4e2cbca48
commit
bdb7d85fa4
1 changed files with 4 additions and 0 deletions
4
Makefile
4
Makefile
|
|
@ -69,6 +69,10 @@ format-backend:
|
||||||
format-frontend:
|
format-frontend:
|
||||||
npm --prefix $(FRONTEND_DIR) run format
|
npm --prefix $(FRONTEND_DIR) run format
|
||||||
|
|
||||||
|
test:
|
||||||
|
@echo "Running backend tests (excluding tmp tooling)..."
|
||||||
|
go test $$(go list ./... | grep -v '/tmp$$')
|
||||||
|
|
||||||
# Build all agent binaries for all platforms
|
# Build all agent binaries for all platforms
|
||||||
build-agents:
|
build-agents:
|
||||||
@echo "Building agent binaries for all platforms..."
|
@echo "Building agent binaries for all platforms..."
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue