Files

17 lines
398 B
Makefile
Raw Permalink Normal View History

2026-06-24 18:58:35 +03:00
.PHONY: test test-watcher test-transcribe test-tagging test-analyse
test: test-watcher test-transcribe test-tagging test-analyse
@echo "all tests passed"
test-watcher:
cd watcher && go test ./... -count=1
test-transcribe:
cd workers/transcribe && go test ./... -count=1
test-tagging:
cd workers/tagging && go test ./... -count=1
test-analyse:
cd workers/analyse && go test ./... -count=1