-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
59 lines (46 loc) · 1.33 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
start-drones:
@echo "Starting drones"
cd ci/setup/drone
docker compose up -d || docker compose up -d
test-mointor:
@echo "Starting monitor pytest"
coverage run -m pytest monitor/tests
@echo "Generating coverage report"
coverage report -m
coverage html
test-llm-analyzer:
@echo "Starting monitor pytest"
coverage run -m pytest ai2/tests
@echo "Generating coverage report"
coverage report -m
coverage html
test-mointor-cloud-run-manager:
@echo "Starting `cloud_run_manager` Test"
coverage run -m pytest monitor/tests/test_cloud_run_manager.py
@echo "Generating coverage report"
coverage report -m
coverage html
test-mointor-conversation-manager:
@echo "starting `conversation_manager` Test"
coverage run -m pytest monitor/tests/test_conversation_manager.py
@echo "Generating coverage report"
coverage report -m
coverage html
test-bot:
@echo "Starting bot pytest"
coverage run -m pytest bot/tests
@echo "Generating coverage report"
coverage report -m
coverage html
build-main-mac:
@echo "Building main"
docker build -t jasonbigcow/tsmc_main:mac .
build-main-linux:
@echo "Building main"
docker build -t jasonbigcow/tsmc_main:linux --platform linux/amd64 .
run-main-mac:
@echo "Starting main"
docker compose up -f docker-compose-mac.yml
run-main-linux:
@echo "Starting main"
docker compose up -f docker-compose.yml