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