From 0a38b8b4a4dea8d3b7dbe6620282a0590bd8b921 Mon Sep 17 00:00:00 2001 From: Luke Tainton Date: Fri, 6 Jun 2025 18:35:24 +0100 Subject: [PATCH] fix black --- .gitea/workflows/ci.yml | 8 ++++++-- pyproject.toml | 3 +++ 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 7852933..b9c3e2a 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -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: | diff --git a/pyproject.toml b/pyproject.toml index aa42eee..d26f212 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -32,3 +32,6 @@ includes = [] [build-system] requires = ["pdm-backend"] build-backend = "pdm.backend" + +[tool.black] +line-length = 101