From cb1d4f11e82efd744e74c4513817a115f99838c8 Mon Sep 17 00:00:00 2001 From: Mathieu Kniewallner Date: Fri, 13 Sep 2024 00:43:07 +0200 Subject: [PATCH] remove typing/unit tests for now to assess functional ones --- .github/workflows/main.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index f9a168b9..e0f3067d 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -80,12 +80,12 @@ jobs: - name: Install Python dependencies run: uv sync --frozen - - name: Check typing - run: uv run mypy - if: ${{ matrix.os.name == 'linux' }} - - - name: Run unit tests - run: uv run pytest tests/unit --cov --cov-config=pyproject.toml --cov-report=xml +# - name: Check typing +# run: uv run mypy +# if: ${{ matrix.os.name == 'linux' }} +# +# - name: Run unit tests +# run: uv run pytest tests/unit --cov --cov-config=pyproject.toml --cov-report=xml - name: Run functional tests run: uv run pytest tests/functional -n auto --dist loadgroup