17 lines
398 B
Makefile
17 lines
398 B
Makefile
|
|
.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
|