-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTaskfile.yml
More file actions
36 lines (29 loc) · 834 Bytes
/
Copy pathTaskfile.yml
File metadata and controls
36 lines (29 loc) · 834 Bytes
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
version: '3'
dotenv: ['.env']
tasks:
default:
desc: "List all available tasks in agentic-fleet"
cmds:
- task --list
install:
desc: "Install virtual environment and dependencies"
cmds:
- python3 -m venv .venv
- .venv/bin/pip install --upgrade pip
- .venv/bin/pip install -r requirements.txt
test:
desc: "Run full pytest automated test suite"
cmds:
- .venv/bin/pytest -v
test:unit:
desc: "Run quick unit tests"
cmds:
- .venv/bin/pytest -v -k "not integration"
dry-run:
desc: "Simulate event routing and prompt rendering without live API calls"
cmds:
- .venv/bin/python -m src.cli --dry-run --event-name issues --event-action opened
run:
desc: "Run the agentic-fleet CLI"
cmds:
- .venv/bin/python -m src.cli {{.CLI_ARGS}}