Environment guards now exit 69 rather than 1, so a caller can tell a suite that could not start from one that ran and failed. The first toj test sweep reported "3 repositories failed" and none of the three had executed a test — two could not find go, one had no venv. That points the reader at the tests when the fault is in the environment. Only the environment guards change. A gitleaks finding, a failed test run and a vulncheck hit still exit 1, because those did run and did fail. Co-Authored-By: Claude <noreply@anthropic.com>
48 lines
1.6 KiB
Makefile
48 lines
1.6 KiB
Makefile
# tatlock-ui — the repo's command surface (D-27).
|
|
#
|
|
# Flutter rather than Python, so there is no venv and no PYTHON here. The
|
|
# reason the targets still exist under these names is the point of D-27: an
|
|
# agent or a person can run `make test` in any repo in this workspace without
|
|
# first working out which stack it is.
|
|
|
|
.DEFAULT_GOAL := help
|
|
|
|
.PHONY: help
|
|
help: ## Show this help
|
|
@grep -hE '^[a-z][a-z0-9_-]*:.*?## ' $(MAKEFILE_LIST) \
|
|
| awk 'BEGIN{FS=":.*?## "}{printf " \033[36m%-14s\033[0m %s\n", $$1, $$2}'
|
|
|
|
.PHONY: setup
|
|
setup: ## Fetch dependencies and generate code (run this after a fresh clone)
|
|
flutter pub get
|
|
$(MAKE) generate
|
|
|
|
.PHONY: generate
|
|
generate: ## Regenerate freezed/json_serializable/riverpod sources
|
|
dart run build_runner build --delete-conflicting-outputs
|
|
|
|
.PHONY: test
|
|
test: ## Run the widget and unit tests
|
|
@test -f lib/core/auth/user_preferences.freezed.dart \
|
|
|| { echo "FAIL — generated sources missing; run: make setup"; exit 69; }
|
|
flutter test
|
|
|
|
# Why the guard above: *.freezed.dart and lib/**/*.g.dart are gitignored, so a
|
|
# fresh clone has none of them and most of the suite fails to compile rather
|
|
# than to assert. On 2026-08-09 that read as "26 passed, 17 failed" — which
|
|
# looks like broken tests and is actually a missing build step. After
|
|
# generating, the same suite is 452 passed. A test run that cannot compile
|
|
# should say so in those words.
|
|
|
|
.PHONY: lint
|
|
lint: ## Static analysis (analysis_options.yaml at the repo root)
|
|
flutter analyze
|
|
|
|
.PHONY: build
|
|
build: ## Release build for the web target
|
|
flutter build web --release
|
|
|
|
.PHONY: clean
|
|
clean: ## Remove build artefacts and the pub cache for this project
|
|
flutter clean
|