From be8d62128f828cf166419728a336ced2feab6a72 Mon Sep 17 00:00:00 2001 From: Michael Panchenko Date: Mon, 2 Jun 2025 21:52:23 +0200 Subject: [PATCH] GH: don't run java and rust tests for the time being --- .github/workflows/pytest.yml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index 1a3b040..8e97440 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/pytest.yml @@ -55,10 +55,6 @@ jobs: run: uv pip install -e ".[dev]" - name: Test with pytest shell: bash - # Currently java Language Server is not working on macos + # Currently, java and rust seem to cause problems in CI run: | - if [ "${{ matrix.os }}" = "macos-latest" ]; then - uv run pytest -m "not java" - else - uv run poe test - fi + uv run pytest -m "not java and not rust"