From 22e2de598d3b9602d4d596eef41b8dd788445999 Mon Sep 17 00:00:00 2001 From: Philipp Temminghoff Date: Sat, 16 Nov 2024 17:11:59 +0100 Subject: [PATCH] chore: testing --- .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 5c474d4..7af3c67 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -38,10 +38,10 @@ jobs: args: "format --check" - name: Static type checking (MyPy) - run: uv run mypy src/githarbor/ + run: uv run --no-group docs mypy src/githarbor/ - name: Run tests - run: uv run pytest --cov-report=xml --cov=src/githarbor/ --cov-report=term-missing + run: uv run --no-group docs pytest --cov-report=xml --cov=src/githarbor/ --cov-report=term-missing env: GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} GITLAB_TOKEN: ${{ secrets.GITLAB_TOKEN }}