Skip to content

Commit a687eaa

Browse files
committed
dev: update docs/contributing.md with right numbers
1 parent 594393e commit a687eaa

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

docs/contributing.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ ruff check --select I --fix .
134134
ruff format .
135135
136136
# Markdown formatting (docs and specific files)
137-
mdformat --number docs/index.md docs/installation.md docs/developing-bots.md docs/protocol-api.md CONTRIBUTING.md README.md
137+
mdformat --number docs/index.md docs/installation.md docs/developing-bots.md docs/protocol-api.md docs/contributing.md README.md
138138
139139
# Type checking
140140
basedpyright
@@ -152,16 +152,16 @@ basedpyright
152152
pytest -x
153153

154154
# Run specific test file
155-
pytest -x tests/test_api_functions.py
155+
pytest -x tests/lua/test_api_functions.py
156156

157157
# Run with verbose output
158158
pytest -vx
159159
```
160160

161161
**Test Suite Overview**:
162162

163-
- 55 tests covering API functions and TCP communication
164-
- ~160 seconds execution time
163+
- 102 tests covering API functions and TCP communication
164+
- ~210 seconds execution time
165165
- Tests game state transitions, socket communication, error handling
166166

167167
**Troubleshooting Test Failures**:
@@ -185,7 +185,7 @@ mkdocs build
185185

186186
### Python Development
187187

188-
- **Style**: Follow modern Python 3.12+ patterns
188+
- **Style**: Follow modern Python 3.13+ patterns
189189
- **Type Hints**: Use pipe operator for unions (`str | int | None`)
190190
- **Type Aliases**: Use `type` statement
191191
- **Docstrings**: Google-style without type information (types in annotations)

0 commit comments

Comments
 (0)