From 030c38a100ed39dc467683e815fd335132248f25 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Wed, 4 Feb 2026 02:39:22 +0000 Subject: [PATCH] fix: resolve CI workflow - use python -m prefix for pytest and ruff --- .gitea/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 1674401..f4ba51a 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -25,9 +25,9 @@ jobs: - name: Run tests run: | - pytest -v + python -m pytest -v - name: Run linting run: | pip install ruff - ruff check cmdparse/ tests/ + python -m ruff check cmdparse/ tests/