From b86f66a574940f7bfafbf2dc48a4a0180decf8aa Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Wed, 4 Feb 2026 18:09:06 +0000 Subject: [PATCH] Fix CI: use python -m pytest explicitly --- .gitea/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index d359521..ee24b8f 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -20,7 +20,7 @@ jobs: cd app && pip install -e ".[dev]" - name: Run tests run: | - cd app && pytest tests/ -v --cov=src --cov-report=term-missing + cd app && python -m pytest tests/ -v --cov=src --cov-report=term-missing - name: Check linting run: | pip install ruff