Skip to content

Commit 73de402

Browse files
committed
docs(conductor): Adapt development commands to the project's Python/pipenv environment
1 parent bc15dac commit 73de402

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

conductor/workflow.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -126,27 +126,27 @@ Before marking any task complete, verify:
126126
127127
## Development Commands
128128
129-
**AI AGENT INSTRUCTION: This section should be adapted to the project's specific language, framework, and build tools.**
130-
131129
### Setup
132130
```bash
133-
# Example: Commands to set up the development environment (e.g., install dependencies, configure database)
134-
# e.g., for a Node.js project: npm install
135-
# e.g., for a Go project: go mod tidy
131+
make install-deps
136132
```
137133

138134
### Daily Development
139135
```bash
140-
# Example: Commands for common daily tasks (e.g., start dev server, run tests, lint, format)
141-
# e.g., for a Node.js project: npm run dev, npm test, npm run lint
142-
# e.g., for a Go project: go run main.go, go test ./..., go fmt ./...
136+
# Run unit tests
137+
make test-unit
138+
139+
# Run linters (black, isort, pyflakes, mypy)
140+
make lint
141+
142+
# Run integration tests
143+
make test-integration
143144
```
144145

145146
### Before Committing
146147
```bash
147-
# Example: Commands to run all pre-commit checks (e.g., format, lint, type check, run tests)
148-
# e.g., for a Node.js project: npm run check
149-
# e.g., for a Go project: make check (if a Makefile exists)
148+
# Run all checks (lint + all tests)
149+
make check
150150
```
151151

152152
## Testing Requirements

0 commit comments

Comments
 (0)