From 5a2827d5ee97174530d5aea5b7b724e180d2e7c2 Mon Sep 17 00:00:00 2001 From: Celes Renata Date: Sat, 11 Apr 2026 12:56:40 -0700 Subject: [PATCH] fix: use python -m for ruff and pytest in CI --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 9e33d81..2c0d792 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -25,10 +25,10 @@ jobs: run: pip install -r requirements.txt - name: Lint - run: ruff check services/ + run: python -m ruff check services/ - name: Test - run: pytest tests/ -x --tb=short -q || true + run: python -m pytest tests/ -x --tb=short -q || true build-services: needs: lint-and-test