From 65bfca2f84684136a2c100566045ba75812f8cb9 Mon Sep 17 00:00:00 2001 From: Ignacio Vergara Kausel Date: Thu, 13 Nov 2025 10:07:29 +0100 Subject: [PATCH 1/2] Disable Snowflake job in CI configuration Comment out Snowflake job in CI workflow due to issues. --- .github/workflows/ci.yaml | 59 ++++++++++++++++++++------------------- 1 file changed, 30 insertions(+), 29 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 71292755..059a3387 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -188,35 +188,36 @@ jobs: with: file: ./coverage.xml token: ${{ secrets.CODECOV_TOKEN }} - - snowflake: - if: ${{ contains(github.event.pull_request.labels.*.name, 'snowflake') || contains(github.event.pull_request.labels.*.name, 'ready') || github.ref == 'refs/heads/main' }} - name: "Snowflake" - runs-on: ubuntu-latest - env: - SNOWFLAKE_USER: DATAJUDGE - SNOWFLAKE_PASSWORD: ${{ secrets.SNOWFLAKE_PASSWORD }} - SNOWFLAKE_ACCOUNT: ${{ secrets.SNOWFLAKE_ACCOUNT }} - strategy: - fail-fast: false - matrix: - env: - - snowflake-py38 - steps: - - name: Checkout branch - uses: actions/checkout@v5 - - name: Set up pixi - uses: prefix-dev/setup-pixi@v0.9.3 - with: - environments: ${{ matrix.env }} - - run: | - pixi run -e ${{ matrix.env }} postinstall - pixi run -e ${{ matrix.env }} coverage --color=yes - - name: Generate code coverage report - uses: codecov/codecov-action@v5.5.1 - with: - file: ./coverage.xml - token: ${{ secrets.CODECOV_TOKEN }} + # Currently we're having issues with Snowflake account. + + # snowflake: + # if: ${{ contains(github.event.pull_request.labels.*.name, 'snowflake') || contains(github.event.pull_request.labels.*.name, 'ready') || github.ref == 'refs/heads/main' }} + # name: "Snowflake" + # runs-on: ubuntu-latest + # env: + # SNOWFLAKE_USER: DATAJUDGE + # SNOWFLAKE_PASSWORD: ${{ secrets.SNOWFLAKE_PASSWORD }} + # SNOWFLAKE_ACCOUNT: ${{ secrets.SNOWFLAKE_ACCOUNT }} + # strategy: + # fail-fast: false + # matrix: + # env: + # - snowflake-py38 + # steps: + # - name: Checkout branch + # uses: actions/checkout@v5 + # - name: Set up pixi + # uses: prefix-dev/setup-pixi@v0.9.3 + # with: + # environments: ${{ matrix.env }} + # - run: | + # pixi run -e ${{ matrix.env }} postinstall + # pixi run -e ${{ matrix.env }} coverage --color=yes + # - name: Generate code coverage report + # uses: codecov/codecov-action@v5.5.1 + # with: + # file: ./coverage.xml + # token: ${{ secrets.CODECOV_TOKEN }} # The authentication of these tests is currently failing. # These tests should be reenabled asap. From 7c1ec911e4e9ac63792c8e30c3e08708cc4f430e Mon Sep 17 00:00:00 2001 From: Ignacio Vergara Kausel Date: Thu, 13 Nov 2025 10:17:35 +0100 Subject: [PATCH 2/2] Revise comment on Snowflake account status Updated comment regarding Snowflake account issues. --- .github/workflows/ci.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 059a3387..646ec230 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -188,8 +188,8 @@ jobs: with: file: ./coverage.xml token: ${{ secrets.CODECOV_TOKEN }} - # Currently we're having issues with Snowflake account. - + + # We are currently experiencing issues with our Snowflake account. # snowflake: # if: ${{ contains(github.event.pull_request.labels.*.name, 'snowflake') || contains(github.event.pull_request.labels.*.name, 'ready') || github.ref == 'refs/heads/main' }} # name: "Snowflake"