File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -134,7 +134,7 @@ ruff check --select I --fix .
134134ruff 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
140140basedpyright
@@ -152,16 +152,16 @@ basedpyright
152152pytest -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
158158pytest -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)
You can’t perform that action at this time.
0 commit comments