File tree Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 2020 - name : Install dependencies
2121 run : uv sync
2222 - name : Python linter
23- run : uv run pylint src
23+ run : uv run pylint src tests
Original file line number Diff line number Diff line change 6060 uv run black --check .
6161
6262pylint :
63- uv run pylint src
63+ uv run pylint src tests
6464
6565pyright :
6666 uv run pyright src
Original file line number Diff line number Diff line change @@ -65,7 +65,9 @@ def test_constructor_fields_required(self) -> None:
6565 AuthorizedResponse (username = "testuser" ) # pyright: ignore
6666
6767 with pytest .raises (ValidationError ):
68- AuthorizedResponse (user_id = "123e4567-e89b-12d3-a456-426614174000" ) # pyright: ignore
68+ AuthorizedResponse (
69+ user_id = "123e4567-e89b-12d3-a456-426614174000"
70+ ) # pyright: ignore
6971
7072
7173class TestUnauthorizedResponse :
You can’t perform that action at this time.
0 commit comments