fix black

This commit is contained in:
Luke Tainton 2025-06-06 18:35:24 +01:00
parent 6abb3b871b
commit 0a38b8b4a4
Signed by: luke
SSH Key Fingerprint: SHA256:D34npKT7UaiT/7gULqu7EPSLWWVAjTjXf4kKfJ/fQBo
2 changed files with 9 additions and 2 deletions

View File

@ -40,11 +40,15 @@ jobs:
- name: Install dependencies
run: uv sync
# - name: Lint
# run: |
# uv run pylint --fail-under=8 --recursive=yes --output-format=parseable --output=lintreport.txt app/ tests/
# cat lintreport.txt
- name: Lint
run: |
uv run pylint --fail-under=8 --recursive=yes --output-format=parseable app/ tests/ # --output=lintreport.txt
cat lintreport.txt
uv run pylint --fail-under=8 --recursive=yes --output-format=parseable app/ tests/
- name: Unit Test
run: |

View File

@ -32,3 +32,6 @@ includes = []
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.black]
line-length = 101