From 265e9d25d3947c190559150af3be187a7d9da91b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Y=C3=BBki=20VACHOT?= Date: Sat, 29 Nov 2025 06:26:35 +0100 Subject: [PATCH] Fix code quality jobs --- .github/workflows/code-quality.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/code-quality.yml b/.github/workflows/code-quality.yml index 223a55c..f52b55a 100644 --- a/.github/workflows/code-quality.yml +++ b/.github/workflows/code-quality.yml @@ -28,11 +28,11 @@ jobs: - name: Check formatting with Black run: | - black --check src/ tests/ + black --check src/ - name: Lint with Ruff run: | - ruff check src/ tests/ + ruff check src/ - name: Type check with MyPy run: | @@ -64,7 +64,7 @@ jobs: - name: Run unit tests run: | - pytest tests/unit/ -v --cov=src/geoguessr_mcp --cov-report=xml --cov-report=term + pytest src/tests/ -v --cov=src/geoguessr_mcp --cov-report=xml --cov-report=term - name: Upload coverage reports uses: codecov/codecov-action@v4