Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
run: pdm run ruff format . --check

- name: Run mypy
run: pdm mypy --show-error-codes
run: pdm mypy

- name: Lint
run: pdm run ruff check .
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ includes = [
[tool.pdm.scripts]
lint = "ruff check --fix ."
format = "ruff format ."
mypy = "mypy openapi_python_client"
mypy = "mypy openapi_python_client --show-error-codes"
check = { composite = ["lint", "format", "mypy", "test"] }
regen = {composite = ["regen_e2e", "regen_integration"]}
e2e = "pytest openapi_python_client end_to_end_tests/test_end_to_end.py"
Expand Down
Loading