From dbf977e1b95112f7f7dc7deb5e76258b269a738b Mon Sep 17 00:00:00 2001 From: Anton Pirker <anton.pirker@sentry.io> Date: Wed, 6 Nov 2024 15:44:21 +0100 Subject: [PATCH 1/3] Do not stop testing when one test suit fails --- .github/workflows/test-integrations-ai.yml | 10 ++++++++++ .../test-integrations-aws-lambda.yml | 1 + .../test-integrations-cloud-computing.yml | 8 ++++++++ .../workflows/test-integrations-common.yml | 1 + .../test-integrations-data-processing.yml | 16 +++++++++++++++ .../workflows/test-integrations-databases.yml | 12 +++++++++++ .../workflows/test-integrations-graphql.yml | 8 ++++++++ .../test-integrations-miscellaneous.yml | 14 +++++++++++++ .../test-integrations-networking.yml | 8 ++++++++ .../test-integrations-web-frameworks-1.yml | 8 ++++++++ .../test-integrations-web-frameworks-2.yml | 20 +++++++++++++++++++ .../templates/test_group.jinja | 1 + 12 files changed, 107 insertions(+) diff --git a/.github/workflows/test-integrations-ai.yml b/.github/workflows/test-integrations-ai.yml index c81f574eea..7601382e83 100644 --- a/.github/workflows/test-integrations-ai.yml +++ b/.github/workflows/test-integrations-ai.yml @@ -42,22 +42,27 @@ jobs: run: | coverage erase - name: Test anthropic latest + if: ${{ !cancelled() }} run: | set -x # print commands that are executed ./scripts/runtox.sh "py${{ matrix.python-version }}-anthropic-latest" - name: Test cohere latest + if: ${{ !cancelled() }} run: | set -x # print commands that are executed ./scripts/runtox.sh "py${{ matrix.python-version }}-cohere-latest" - name: Test langchain latest + if: ${{ !cancelled() }} run: | set -x # print commands that are executed ./scripts/runtox.sh "py${{ matrix.python-version }}-langchain-latest" - name: Test openai latest + if: ${{ !cancelled() }} run: | set -x # print commands that are executed ./scripts/runtox.sh "py${{ matrix.python-version }}-openai-latest" - name: Test huggingface_hub latest + if: ${{ !cancelled() }} run: | set -x # print commands that are executed ./scripts/runtox.sh "py${{ matrix.python-version }}-huggingface_hub-latest" @@ -104,22 +109,27 @@ jobs: run: | coverage erase - name: Test anthropic pinned + if: ${{ !cancelled() }} run: | set -x # print commands that are executed ./scripts/runtox.sh --exclude-latest "py${{ matrix.python-version }}-anthropic" - name: Test cohere pinned + if: ${{ !cancelled() }} run: | set -x # print commands that are executed ./scripts/runtox.sh --exclude-latest "py${{ matrix.python-version }}-cohere" - name: Test langchain pinned + if: ${{ !cancelled() }} run: | set -x # print commands that are executed ./scripts/runtox.sh --exclude-latest "py${{ matrix.python-version }}-langchain" - name: Test openai pinned + if: ${{ !cancelled() }} run: | set -x # print commands that are executed ./scripts/runtox.sh --exclude-latest "py${{ matrix.python-version }}-openai" - name: Test huggingface_hub pinned + if: ${{ !cancelled() }} run: | set -x # print commands that are executed ./scripts/runtox.sh --exclude-latest "py${{ matrix.python-version }}-huggingface_hub" diff --git a/.github/workflows/test-integrations-aws-lambda.yml b/.github/workflows/test-integrations-aws-lambda.yml index b6fce68067..6f88c26bfa 100644 --- a/.github/workflows/test-integrations-aws-lambda.yml +++ b/.github/workflows/test-integrations-aws-lambda.yml @@ -77,6 +77,7 @@ jobs: run: | coverage erase - name: Test aws_lambda pinned + if: ${{ !cancelled() }} run: | set -x # print commands that are executed ./scripts/runtox.sh --exclude-latest "py${{ matrix.python-version }}-aws_lambda" diff --git a/.github/workflows/test-integrations-cloud-computing.yml b/.github/workflows/test-integrations-cloud-computing.yml index b20eaa3cf2..ea3cb9a00b 100644 --- a/.github/workflows/test-integrations-cloud-computing.yml +++ b/.github/workflows/test-integrations-cloud-computing.yml @@ -42,18 +42,22 @@ jobs: run: | coverage erase - name: Test boto3 latest + if: ${{ !cancelled() }} run: | set -x # print commands that are executed ./scripts/runtox.sh "py${{ matrix.python-version }}-boto3-latest" - name: Test chalice latest + if: ${{ !cancelled() }} run: | set -x # print commands that are executed ./scripts/runtox.sh "py${{ matrix.python-version }}-chalice-latest" - name: Test cloud_resource_context latest + if: ${{ !cancelled() }} run: | set -x # print commands that are executed ./scripts/runtox.sh "py${{ matrix.python-version }}-cloud_resource_context-latest" - name: Test gcp latest + if: ${{ !cancelled() }} run: | set -x # print commands that are executed ./scripts/runtox.sh "py${{ matrix.python-version }}-gcp-latest" @@ -100,18 +104,22 @@ jobs: run: | coverage erase - name: Test boto3 pinned + if: ${{ !cancelled() }} run: | set -x # print commands that are executed ./scripts/runtox.sh --exclude-latest "py${{ matrix.python-version }}-boto3" - name: Test chalice pinned + if: ${{ !cancelled() }} run: | set -x # print commands that are executed ./scripts/runtox.sh --exclude-latest "py${{ matrix.python-version }}-chalice" - name: Test cloud_resource_context pinned + if: ${{ !cancelled() }} run: | set -x # print commands that are executed ./scripts/runtox.sh --exclude-latest "py${{ matrix.python-version }}-cloud_resource_context" - name: Test gcp pinned + if: ${{ !cancelled() }} run: | set -x # print commands that are executed ./scripts/runtox.sh --exclude-latest "py${{ matrix.python-version }}-gcp" diff --git a/.github/workflows/test-integrations-common.yml b/.github/workflows/test-integrations-common.yml index f9248f0339..bc620165e8 100644 --- a/.github/workflows/test-integrations-common.yml +++ b/.github/workflows/test-integrations-common.yml @@ -42,6 +42,7 @@ jobs: run: | coverage erase - name: Test common pinned + if: ${{ !cancelled() }} run: | set -x # print commands that are executed ./scripts/runtox.sh --exclude-latest "py${{ matrix.python-version }}-common" diff --git a/.github/workflows/test-integrations-data-processing.yml b/.github/workflows/test-integrations-data-processing.yml index 713ba71727..a9d031cd68 100644 --- a/.github/workflows/test-integrations-data-processing.yml +++ b/.github/workflows/test-integrations-data-processing.yml @@ -44,34 +44,42 @@ jobs: run: | coverage erase - name: Test arq latest + if: ${{ !cancelled() }} run: | set -x # print commands that are executed ./scripts/runtox.sh "py${{ matrix.python-version }}-arq-latest" - name: Test beam latest + if: ${{ !cancelled() }} run: | set -x # print commands that are executed ./scripts/runtox.sh "py${{ matrix.python-version }}-beam-latest" - name: Test celery latest + if: ${{ !cancelled() }} run: | set -x # print commands that are executed ./scripts/runtox.sh "py${{ matrix.python-version }}-celery-latest" - name: Test dramatiq latest + if: ${{ !cancelled() }} run: | set -x # print commands that are executed ./scripts/runtox.sh "py${{ matrix.python-version }}-dramatiq-latest" - name: Test huey latest + if: ${{ !cancelled() }} run: | set -x # print commands that are executed ./scripts/runtox.sh "py${{ matrix.python-version }}-huey-latest" - name: Test ray latest + if: ${{ !cancelled() }} run: | set -x # print commands that are executed ./scripts/runtox.sh "py${{ matrix.python-version }}-ray-latest" - name: Test rq latest + if: ${{ !cancelled() }} run: | set -x # print commands that are executed ./scripts/runtox.sh "py${{ matrix.python-version }}-rq-latest" - name: Test spark latest + if: ${{ !cancelled() }} run: | set -x # print commands that are executed ./scripts/runtox.sh "py${{ matrix.python-version }}-spark-latest" @@ -120,34 +128,42 @@ jobs: run: | coverage erase - name: Test arq pinned + if: ${{ !cancelled() }} run: | set -x # print commands that are executed ./scripts/runtox.sh --exclude-latest "py${{ matrix.python-version }}-arq" - name: Test beam pinned + if: ${{ !cancelled() }} run: | set -x # print commands that are executed ./scripts/runtox.sh --exclude-latest "py${{ matrix.python-version }}-beam" - name: Test celery pinned + if: ${{ !cancelled() }} run: | set -x # print commands that are executed ./scripts/runtox.sh --exclude-latest "py${{ matrix.python-version }}-celery" - name: Test dramatiq pinned + if: ${{ !cancelled() }} run: | set -x # print commands that are executed ./scripts/runtox.sh --exclude-latest "py${{ matrix.python-version }}-dramatiq" - name: Test huey pinned + if: ${{ !cancelled() }} run: | set -x # print commands that are executed ./scripts/runtox.sh --exclude-latest "py${{ matrix.python-version }}-huey" - name: Test ray pinned + if: ${{ !cancelled() }} run: | set -x # print commands that are executed ./scripts/runtox.sh --exclude-latest "py${{ matrix.python-version }}-ray" - name: Test rq pinned + if: ${{ !cancelled() }} run: | set -x # print commands that are executed ./scripts/runtox.sh --exclude-latest "py${{ matrix.python-version }}-rq" - name: Test spark pinned + if: ${{ !cancelled() }} run: | set -x # print commands that are executed ./scripts/runtox.sh --exclude-latest "py${{ matrix.python-version }}-spark" diff --git a/.github/workflows/test-integrations-databases.yml b/.github/workflows/test-integrations-databases.yml index 0f44ede674..4e68cb954e 100644 --- a/.github/workflows/test-integrations-databases.yml +++ b/.github/workflows/test-integrations-databases.yml @@ -61,26 +61,32 @@ jobs: run: | coverage erase - name: Test asyncpg latest + if: ${{ !cancelled() }} run: | set -x # print commands that are executed ./scripts/runtox.sh "py${{ matrix.python-version }}-asyncpg-latest" - name: Test clickhouse_driver latest + if: ${{ !cancelled() }} run: | set -x # print commands that are executed ./scripts/runtox.sh "py${{ matrix.python-version }}-clickhouse_driver-latest" - name: Test pymongo latest + if: ${{ !cancelled() }} run: | set -x # print commands that are executed ./scripts/runtox.sh "py${{ matrix.python-version }}-pymongo-latest" - name: Test redis latest + if: ${{ !cancelled() }} run: | set -x # print commands that are executed ./scripts/runtox.sh "py${{ matrix.python-version }}-redis-latest" - name: Test redis_py_cluster_legacy latest + if: ${{ !cancelled() }} run: | set -x # print commands that are executed ./scripts/runtox.sh "py${{ matrix.python-version }}-redis_py_cluster_legacy-latest" - name: Test sqlalchemy latest + if: ${{ !cancelled() }} run: | set -x # print commands that are executed ./scripts/runtox.sh "py${{ matrix.python-version }}-sqlalchemy-latest" @@ -146,26 +152,32 @@ jobs: run: | coverage erase - name: Test asyncpg pinned + if: ${{ !cancelled() }} run: | set -x # print commands that are executed ./scripts/runtox.sh --exclude-latest "py${{ matrix.python-version }}-asyncpg" - name: Test clickhouse_driver pinned + if: ${{ !cancelled() }} run: | set -x # print commands that are executed ./scripts/runtox.sh --exclude-latest "py${{ matrix.python-version }}-clickhouse_driver" - name: Test pymongo pinned + if: ${{ !cancelled() }} run: | set -x # print commands that are executed ./scripts/runtox.sh --exclude-latest "py${{ matrix.python-version }}-pymongo" - name: Test redis pinned + if: ${{ !cancelled() }} run: | set -x # print commands that are executed ./scripts/runtox.sh --exclude-latest "py${{ matrix.python-version }}-redis" - name: Test redis_py_cluster_legacy pinned + if: ${{ !cancelled() }} run: | set -x # print commands that are executed ./scripts/runtox.sh --exclude-latest "py${{ matrix.python-version }}-redis_py_cluster_legacy" - name: Test sqlalchemy pinned + if: ${{ !cancelled() }} run: | set -x # print commands that are executed ./scripts/runtox.sh --exclude-latest "py${{ matrix.python-version }}-sqlalchemy" diff --git a/.github/workflows/test-integrations-graphql.yml b/.github/workflows/test-integrations-graphql.yml index dcc467c61f..fe84be66f9 100644 --- a/.github/workflows/test-integrations-graphql.yml +++ b/.github/workflows/test-integrations-graphql.yml @@ -42,18 +42,22 @@ jobs: run: | coverage erase - name: Test ariadne latest + if: ${{ !cancelled() }} run: | set -x # print commands that are executed ./scripts/runtox.sh "py${{ matrix.python-version }}-ariadne-latest" - name: Test gql latest + if: ${{ !cancelled() }} run: | set -x # print commands that are executed ./scripts/runtox.sh "py${{ matrix.python-version }}-gql-latest" - name: Test graphene latest + if: ${{ !cancelled() }} run: | set -x # print commands that are executed ./scripts/runtox.sh "py${{ matrix.python-version }}-graphene-latest" - name: Test strawberry latest + if: ${{ !cancelled() }} run: | set -x # print commands that are executed ./scripts/runtox.sh "py${{ matrix.python-version }}-strawberry-latest" @@ -100,18 +104,22 @@ jobs: run: | coverage erase - name: Test ariadne pinned + if: ${{ !cancelled() }} run: | set -x # print commands that are executed ./scripts/runtox.sh --exclude-latest "py${{ matrix.python-version }}-ariadne" - name: Test gql pinned + if: ${{ !cancelled() }} run: | set -x # print commands that are executed ./scripts/runtox.sh --exclude-latest "py${{ matrix.python-version }}-gql" - name: Test graphene pinned + if: ${{ !cancelled() }} run: | set -x # print commands that are executed ./scripts/runtox.sh --exclude-latest "py${{ matrix.python-version }}-graphene" - name: Test strawberry pinned + if: ${{ !cancelled() }} run: | set -x # print commands that are executed ./scripts/runtox.sh --exclude-latest "py${{ matrix.python-version }}-strawberry" diff --git a/.github/workflows/test-integrations-miscellaneous.yml b/.github/workflows/test-integrations-miscellaneous.yml index 2a1c2818fd..8151ff5e4a 100644 --- a/.github/workflows/test-integrations-miscellaneous.yml +++ b/.github/workflows/test-integrations-miscellaneous.yml @@ -42,30 +42,37 @@ jobs: run: | coverage erase - name: Test launchdarkly latest + if: ${{ !cancelled() }} run: | set -x # print commands that are executed ./scripts/runtox.sh "py${{ matrix.python-version }}-launchdarkly-latest" - name: Test loguru latest + if: ${{ !cancelled() }} run: | set -x # print commands that are executed ./scripts/runtox.sh "py${{ matrix.python-version }}-loguru-latest" - name: Test openfeature latest + if: ${{ !cancelled() }} run: | set -x # print commands that are executed ./scripts/runtox.sh "py${{ matrix.python-version }}-openfeature-latest" - name: Test opentelemetry latest + if: ${{ !cancelled() }} run: | set -x # print commands that are executed ./scripts/runtox.sh "py${{ matrix.python-version }}-opentelemetry-latest" - name: Test potel latest + if: ${{ !cancelled() }} run: | set -x # print commands that are executed ./scripts/runtox.sh "py${{ matrix.python-version }}-potel-latest" - name: Test pure_eval latest + if: ${{ !cancelled() }} run: | set -x # print commands that are executed ./scripts/runtox.sh "py${{ matrix.python-version }}-pure_eval-latest" - name: Test trytond latest + if: ${{ !cancelled() }} run: | set -x # print commands that are executed ./scripts/runtox.sh "py${{ matrix.python-version }}-trytond-latest" @@ -112,30 +119,37 @@ jobs: run: | coverage erase - name: Test launchdarkly pinned + if: ${{ !cancelled() }} run: | set -x # print commands that are executed ./scripts/runtox.sh --exclude-latest "py${{ matrix.python-version }}-launchdarkly" - name: Test loguru pinned + if: ${{ !cancelled() }} run: | set -x # print commands that are executed ./scripts/runtox.sh --exclude-latest "py${{ matrix.python-version }}-loguru" - name: Test openfeature pinned + if: ${{ !cancelled() }} run: | set -x # print commands that are executed ./scripts/runtox.sh --exclude-latest "py${{ matrix.python-version }}-openfeature" - name: Test opentelemetry pinned + if: ${{ !cancelled() }} run: | set -x # print commands that are executed ./scripts/runtox.sh --exclude-latest "py${{ matrix.python-version }}-opentelemetry" - name: Test potel pinned + if: ${{ !cancelled() }} run: | set -x # print commands that are executed ./scripts/runtox.sh --exclude-latest "py${{ matrix.python-version }}-potel" - name: Test pure_eval pinned + if: ${{ !cancelled() }} run: | set -x # print commands that are executed ./scripts/runtox.sh --exclude-latest "py${{ matrix.python-version }}-pure_eval" - name: Test trytond pinned + if: ${{ !cancelled() }} run: | set -x # print commands that are executed ./scripts/runtox.sh --exclude-latest "py${{ matrix.python-version }}-trytond" diff --git a/.github/workflows/test-integrations-networking.yml b/.github/workflows/test-integrations-networking.yml index c5b4722b57..52d55fe978 100644 --- a/.github/workflows/test-integrations-networking.yml +++ b/.github/workflows/test-integrations-networking.yml @@ -42,18 +42,22 @@ jobs: run: | coverage erase - name: Test gevent latest + if: ${{ !cancelled() }} run: | set -x # print commands that are executed ./scripts/runtox.sh "py${{ matrix.python-version }}-gevent-latest" - name: Test grpc latest + if: ${{ !cancelled() }} run: | set -x # print commands that are executed ./scripts/runtox.sh "py${{ matrix.python-version }}-grpc-latest" - name: Test httpx latest + if: ${{ !cancelled() }} run: | set -x # print commands that are executed ./scripts/runtox.sh "py${{ matrix.python-version }}-httpx-latest" - name: Test requests latest + if: ${{ !cancelled() }} run: | set -x # print commands that are executed ./scripts/runtox.sh "py${{ matrix.python-version }}-requests-latest" @@ -100,18 +104,22 @@ jobs: run: | coverage erase - name: Test gevent pinned + if: ${{ !cancelled() }} run: | set -x # print commands that are executed ./scripts/runtox.sh --exclude-latest "py${{ matrix.python-version }}-gevent" - name: Test grpc pinned + if: ${{ !cancelled() }} run: | set -x # print commands that are executed ./scripts/runtox.sh --exclude-latest "py${{ matrix.python-version }}-grpc" - name: Test httpx pinned + if: ${{ !cancelled() }} run: | set -x # print commands that are executed ./scripts/runtox.sh --exclude-latest "py${{ matrix.python-version }}-httpx" - name: Test requests pinned + if: ${{ !cancelled() }} run: | set -x # print commands that are executed ./scripts/runtox.sh --exclude-latest "py${{ matrix.python-version }}-requests" diff --git a/.github/workflows/test-integrations-web-frameworks-1.yml b/.github/workflows/test-integrations-web-frameworks-1.yml index cca39c2cdc..7665db9697 100644 --- a/.github/workflows/test-integrations-web-frameworks-1.yml +++ b/.github/workflows/test-integrations-web-frameworks-1.yml @@ -60,18 +60,22 @@ jobs: run: | coverage erase - name: Test django latest + if: ${{ !cancelled() }} run: | set -x # print commands that are executed ./scripts/runtox.sh "py${{ matrix.python-version }}-django-latest" - name: Test flask latest + if: ${{ !cancelled() }} run: | set -x # print commands that are executed ./scripts/runtox.sh "py${{ matrix.python-version }}-flask-latest" - name: Test starlette latest + if: ${{ !cancelled() }} run: | set -x # print commands that are executed ./scripts/runtox.sh "py${{ matrix.python-version }}-starlette-latest" - name: Test fastapi latest + if: ${{ !cancelled() }} run: | set -x # print commands that are executed ./scripts/runtox.sh "py${{ matrix.python-version }}-fastapi-latest" @@ -136,18 +140,22 @@ jobs: run: | coverage erase - name: Test django pinned + if: ${{ !cancelled() }} run: | set -x # print commands that are executed ./scripts/runtox.sh --exclude-latest "py${{ matrix.python-version }}-django" - name: Test flask pinned + if: ${{ !cancelled() }} run: | set -x # print commands that are executed ./scripts/runtox.sh --exclude-latest "py${{ matrix.python-version }}-flask" - name: Test starlette pinned + if: ${{ !cancelled() }} run: | set -x # print commands that are executed ./scripts/runtox.sh --exclude-latest "py${{ matrix.python-version }}-starlette" - name: Test fastapi pinned + if: ${{ !cancelled() }} run: | set -x # print commands that are executed ./scripts/runtox.sh --exclude-latest "py${{ matrix.python-version }}-fastapi" diff --git a/.github/workflows/test-integrations-web-frameworks-2.yml b/.github/workflows/test-integrations-web-frameworks-2.yml index 8f4b9d4eb3..7d4bbb86bf 100644 --- a/.github/workflows/test-integrations-web-frameworks-2.yml +++ b/.github/workflows/test-integrations-web-frameworks-2.yml @@ -42,42 +42,52 @@ jobs: run: | coverage erase - name: Test aiohttp latest + if: ${{ !cancelled() }} run: | set -x # print commands that are executed ./scripts/runtox.sh "py${{ matrix.python-version }}-aiohttp-latest" - name: Test asgi latest + if: ${{ !cancelled() }} run: | set -x # print commands that are executed ./scripts/runtox.sh "py${{ matrix.python-version }}-asgi-latest" - name: Test bottle latest + if: ${{ !cancelled() }} run: | set -x # print commands that are executed ./scripts/runtox.sh "py${{ matrix.python-version }}-bottle-latest" - name: Test falcon latest + if: ${{ !cancelled() }} run: | set -x # print commands that are executed ./scripts/runtox.sh "py${{ matrix.python-version }}-falcon-latest" - name: Test litestar latest + if: ${{ !cancelled() }} run: | set -x # print commands that are executed ./scripts/runtox.sh "py${{ matrix.python-version }}-litestar-latest" - name: Test pyramid latest + if: ${{ !cancelled() }} run: | set -x # print commands that are executed ./scripts/runtox.sh "py${{ matrix.python-version }}-pyramid-latest" - name: Test quart latest + if: ${{ !cancelled() }} run: | set -x # print commands that are executed ./scripts/runtox.sh "py${{ matrix.python-version }}-quart-latest" - name: Test sanic latest + if: ${{ !cancelled() }} run: | set -x # print commands that are executed ./scripts/runtox.sh "py${{ matrix.python-version }}-sanic-latest" - name: Test starlite latest + if: ${{ !cancelled() }} run: | set -x # print commands that are executed ./scripts/runtox.sh "py${{ matrix.python-version }}-starlite-latest" - name: Test tornado latest + if: ${{ !cancelled() }} run: | set -x # print commands that are executed ./scripts/runtox.sh "py${{ matrix.python-version }}-tornado-latest" @@ -124,42 +134,52 @@ jobs: run: | coverage erase - name: Test aiohttp pinned + if: ${{ !cancelled() }} run: | set -x # print commands that are executed ./scripts/runtox.sh --exclude-latest "py${{ matrix.python-version }}-aiohttp" - name: Test asgi pinned + if: ${{ !cancelled() }} run: | set -x # print commands that are executed ./scripts/runtox.sh --exclude-latest "py${{ matrix.python-version }}-asgi" - name: Test bottle pinned + if: ${{ !cancelled() }} run: | set -x # print commands that are executed ./scripts/runtox.sh --exclude-latest "py${{ matrix.python-version }}-bottle" - name: Test falcon pinned + if: ${{ !cancelled() }} run: | set -x # print commands that are executed ./scripts/runtox.sh --exclude-latest "py${{ matrix.python-version }}-falcon" - name: Test litestar pinned + if: ${{ !cancelled() }} run: | set -x # print commands that are executed ./scripts/runtox.sh --exclude-latest "py${{ matrix.python-version }}-litestar" - name: Test pyramid pinned + if: ${{ !cancelled() }} run: | set -x # print commands that are executed ./scripts/runtox.sh --exclude-latest "py${{ matrix.python-version }}-pyramid" - name: Test quart pinned + if: ${{ !cancelled() }} run: | set -x # print commands that are executed ./scripts/runtox.sh --exclude-latest "py${{ matrix.python-version }}-quart" - name: Test sanic pinned + if: ${{ !cancelled() }} run: | set -x # print commands that are executed ./scripts/runtox.sh --exclude-latest "py${{ matrix.python-version }}-sanic" - name: Test starlite pinned + if: ${{ !cancelled() }} run: | set -x # print commands that are executed ./scripts/runtox.sh --exclude-latest "py${{ matrix.python-version }}-starlite" - name: Test tornado pinned + if: ${{ !cancelled() }} run: | set -x # print commands that are executed ./scripts/runtox.sh --exclude-latest "py${{ matrix.python-version }}-tornado" diff --git a/scripts/split-tox-gh-actions/templates/test_group.jinja b/scripts/split-tox-gh-actions/templates/test_group.jinja index 4fcfe6cd8e..e83697f1fc 100644 --- a/scripts/split-tox-gh-actions/templates/test_group.jinja +++ b/scripts/split-tox-gh-actions/templates/test_group.jinja @@ -64,6 +64,7 @@ {% for framework in frameworks %} - name: Test {{ framework }} {{ category }} + {% raw %}if: ${{ !cancelled() }}{% endraw %} run: | set -x # print commands that are executed {% if category == "pinned" %} From 4e01ccf2df5eb9351b38fe6ae1469fdd0191c5d1 Mon Sep 17 00:00:00 2001 From: Anton Pirker <anton.pirker@sentry.io> Date: Fri, 8 Nov 2024 16:34:54 +0100 Subject: [PATCH 2/3] testing something From c816c4a51b53df445d2946ba84a33bab0986ce30 Mon Sep 17 00:00:00 2001 From: Anton Pirker <anton.pirker@sentry.io> Date: Tue, 25 Mar 2025 09:00:44 +0100 Subject: [PATCH 3/3] trigger ci