We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 046136f commit edff01eCopy full SHA for edff01e
1 file changed
README.md
@@ -232,10 +232,10 @@ The session cookie will now automatically load when you `cd` into the project di
232
uv run pytest
233
234
# Run all tests for a specific year
235
- uv run pytest _202X/
+ uv run pytest _202Y/
236
237
# Run tests for a specific day
238
- uv run pytest _202X/tests/test_DD.py
+ uv run pytest _202Y/tests/test_DD.py
239
```
240
241
All core workflows utilize the CLI, and the testing framework is fully integrated.
@@ -250,7 +250,7 @@ GitHub Actions continuously check code quality on push/PR:
250
251
- **Type checking**: `uv run mypy ...`
252
253
-- **Tests**: `uv run pytest tests`
+- **Tests**: `uv run pytest _202Y`
254
255
These match the checks enforced by local pre-commit.
256
0 commit comments