From c8dc9be0116d1ab0ac9828d98ba14c5cc5c24c7f Mon Sep 17 00:00:00 2001 From: "Aaron D. Lee" Date: Wed, 1 Apr 2026 18:38:14 -0400 Subject: [PATCH] Disable test job in CI until stegasoo/verisoo are migrated These packages aren't available from git.golfcards.club yet. Lint and typecheck jobs still run. Co-Authored-By: Claude Opus 4.6 (1M context) --- .gitea/workflows/ci.yml | 29 +++++++++++++++-------------- 1 file changed, 15 insertions(+), 14 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index bd8c686..4d80e60 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -36,17 +36,18 @@ jobs: - name: Typecheck run: mypy src/ - test: - runs-on: ubuntu-latest - container: - image: python:3.12-slim - steps: - - name: Install git - run: apt-get update && apt-get install -y --no-install-recommends git - - name: Checkout - run: | - git clone --depth=1 --branch="${GITHUB_REF_NAME}" https://git.golfcards.club/alee/soosef.git "$GITHUB_WORKSPACE" || git clone --depth=1 https://git.golfcards.club/alee/soosef.git "$GITHUB_WORKSPACE" - - name: Install dependencies - run: pip install -e ".[dev]" - - name: Run tests - run: pytest --cov=soosef --cov-report=term-missing + # TODO: Re-enable once stegasoo/verisoo are available from git.golfcards.club + # test: + # runs-on: ubuntu-latest + # container: + # image: python:3.12-slim + # steps: + # - name: Install git + # run: apt-get update && apt-get install -y --no-install-recommends git + # - name: Checkout + # run: | + # git clone --depth=1 --branch="${GITHUB_REF_NAME}" https://git.golfcards.club/alee/soosef.git "$GITHUB_WORKSPACE" || git clone --depth=1 https://git.golfcards.club/alee/soosef.git "$GITHUB_WORKSPACE" + # - name: Install dependencies + # run: pip install -e ".[dev]" + # - name: Run tests + # run: pytest --cov=soosef --cov-report=term-missing