From ff6a01d46e8eb8f75e3846f7bd49be45b559b899 Mon Sep 17 00:00:00 2001 From: dtenwolde Date: Thu, 28 Mar 2024 15:18:18 +0100 Subject: [PATCH] Disable python workflow --- .github/workflows/Python.yml | 86 ++++++++++++++++++------------------ 1 file changed, 43 insertions(+), 43 deletions(-) diff --git a/.github/workflows/Python.yml b/.github/workflows/Python.yml index d549dae7..f49f4956 100644 --- a/.github/workflows/Python.yml +++ b/.github/workflows/Python.yml @@ -1,44 +1,44 @@ +## +## NOTE: if python tests are unused, deleting this file or disabling the workflow on GitHub will speed up CI +## # -# NOTE: if python tests are unused, deleting this file or disabling the workflow on GitHub will speed up CI -# - -name: Python -on: [push, pull_request,repository_dispatch] -concurrency: - group: ${{ github.workflow }}-${{ github.ref }}-${{ github.head_ref || '' }}-${{ github.base_ref || '' }}-${{ github.ref != 'refs/heads/main' || github.sha }} - cancel-in-progress: true -defaults: - run: - shell: bash - -jobs: - python: - name: Python - runs-on: ubuntu-latest - env: - GEN: ninja - - steps: - - name: Install Ninja - run: | - sudo apt-get update -y -qq - sudo apt-get install -y -qq ninja-build - - - uses: actions/checkout@v2 - with: - fetch-depth: 0 - submodules: 'true' - - - uses: actions/setup-python@v2 - with: - python-version: '3.9' - - - name: Build DuckDB Python client - run: make debug_python - - - name: Install Python test dependencies - run: python -m pip install --upgrade pytest - - - name: Run Python client tests - run: | - make test_debug_python \ No newline at end of file +#name: Python +#on: [push, pull_request,repository_dispatch] +#concurrency: +# group: ${{ github.workflow }}-${{ github.ref }}-${{ github.head_ref || '' }}-${{ github.base_ref || '' }}-${{ github.ref != 'refs/heads/main' || github.sha }} +# cancel-in-progress: true +#defaults: +# run: +# shell: bash +# +#jobs: +# python: +# name: Python +# runs-on: ubuntu-latest +# env: +# GEN: ninja +# +# steps: +# - name: Install Ninja +# run: | +# sudo apt-get update -y -qq +# sudo apt-get install -y -qq ninja-build +# +# - uses: actions/checkout@v2 +# with: +# fetch-depth: 0 +# submodules: 'true' +# +# - uses: actions/setup-python@v2 +# with: +# python-version: '3.9' +# +# - name: Build DuckDB Python client +# run: make debug_python +# +# - name: Install Python test dependencies +# run: python -m pip install --upgrade pytest +# +# - name: Run Python client tests +# run: | +# make test_debug_python \ No newline at end of file