From 29e597c81536d7084b96ad78b9ab3d2bad3921b8 Mon Sep 17 00:00:00 2001 From: Luke Tainton Date: Fri, 6 Jun 2025 19:19:38 +0200 Subject: [PATCH] Update .gitea/workflows/ci.yml --- .gitea/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 448c395..fe62b2c 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -43,7 +43,8 @@ jobs: - name: Lint run: | - uv run pylint --fail-under=8 --recursive=yes --output-format=parseable --output=lintreport.txt app/ tests/ + # uv run pylint --fail-under=8 --recursive=yes --output-format=parseable --output=lintreport.txt app/ tests/ + uv run pylint --fail-under=8 --recursive=yes --output-format=parseable app/ tests/ cat lintreport.txt - name: Unit Test