Skip to content

Commit f0762d7

Browse files
committed
run all tests for now
1 parent 18e6e4e commit f0762d7

14 files changed

+61
-4
lines changed

.github/workflows/test-integrations-ai.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,22 +48,27 @@ jobs:
4848
run: |
4949
coverage erase
5050
- name: Test anthropic
51+
if: ${{ !cancelled() }}
5152
run: |
5253
set -x # print commands that are executed
5354
./scripts/runtox.sh "py${{ matrix.python-version }}-anthropic"
5455
- name: Test cohere
56+
if: ${{ !cancelled() }}
5557
run: |
5658
set -x # print commands that are executed
5759
./scripts/runtox.sh "py${{ matrix.python-version }}-cohere"
5860
- name: Test langchain
61+
if: ${{ !cancelled() }}
5962
run: |
6063
set -x # print commands that are executed
6164
./scripts/runtox.sh "py${{ matrix.python-version }}-langchain"
6265
- name: Test openai
66+
if: ${{ !cancelled() }}
6367
run: |
6468
set -x # print commands that are executed
6569
./scripts/runtox.sh "py${{ matrix.python-version }}-openai"
6670
- name: Test huggingface_hub
71+
if: ${{ !cancelled() }}
6772
run: |
6873
set -x # print commands that are executed
6974
./scripts/runtox.sh "py${{ matrix.python-version }}-huggingface_hub"

.github/workflows/test-integrations-aws.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,7 @@ jobs:
8383
run: |
8484
coverage erase
8585
- name: Test aws_lambda
86+
if: ${{ !cancelled() }}
8687
run: |
8788
set -x # print commands that are executed
8889
./scripts/runtox.sh "py${{ matrix.python-version }}-aws_lambda"

.github/workflows/test-integrations-cloud.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,18 +48,22 @@ jobs:
4848
run: |
4949
coverage erase
5050
- name: Test boto3
51+
if: ${{ !cancelled() }}
5152
run: |
5253
set -x # print commands that are executed
5354
./scripts/runtox.sh "py${{ matrix.python-version }}-boto3"
5455
- name: Test chalice
56+
if: ${{ !cancelled() }}
5557
run: |
5658
set -x # print commands that are executed
5759
./scripts/runtox.sh "py${{ matrix.python-version }}-chalice"
5860
- name: Test cloud_resource_context
61+
if: ${{ !cancelled() }}
5962
run: |
6063
set -x # print commands that are executed
6164
./scripts/runtox.sh "py${{ matrix.python-version }}-cloud_resource_context"
6265
- name: Test gcp
66+
if: ${{ !cancelled() }}
6367
run: |
6468
set -x # print commands that are executed
6569
./scripts/runtox.sh "py${{ matrix.python-version }}-gcp"

.github/workflows/test-integrations-common.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ jobs:
4848
run: |
4949
coverage erase
5050
- name: Test common
51+
if: ${{ !cancelled() }}
5152
run: |
5253
set -x # print commands that are executed
5354
./scripts/runtox.sh "py${{ matrix.python-version }}-common"

.github/workflows/test-integrations-dbs.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,26 +67,32 @@ jobs:
6767
run: |
6868
coverage erase
6969
- name: Test asyncpg
70+
if: ${{ !cancelled() }}
7071
run: |
7172
set -x # print commands that are executed
7273
./scripts/runtox.sh "py${{ matrix.python-version }}-asyncpg"
7374
- name: Test clickhouse_driver
75+
if: ${{ !cancelled() }}
7476
run: |
7577
set -x # print commands that are executed
7678
./scripts/runtox.sh "py${{ matrix.python-version }}-clickhouse_driver"
7779
- name: Test pymongo
80+
if: ${{ !cancelled() }}
7881
run: |
7982
set -x # print commands that are executed
8083
./scripts/runtox.sh "py${{ matrix.python-version }}-pymongo"
8184
- name: Test redis
85+
if: ${{ !cancelled() }}
8286
run: |
8387
set -x # print commands that are executed
8488
./scripts/runtox.sh "py${{ matrix.python-version }}-redis"
8589
- name: Test redis_py_cluster_legacy
90+
if: ${{ !cancelled() }}
8691
run: |
8792
set -x # print commands that are executed
8893
./scripts/runtox.sh "py${{ matrix.python-version }}-redis_py_cluster_legacy"
8994
- name: Test sqlalchemy
95+
if: ${{ !cancelled() }}
9096
run: |
9197
set -x # print commands that are executed
9298
./scripts/runtox.sh "py${{ matrix.python-version }}-sqlalchemy"

.github/workflows/test-integrations-flags.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,14 +48,17 @@ jobs:
4848
run: |
4949
coverage erase
5050
- name: Test launchdarkly
51+
if: ${{ !cancelled() }}
5152
run: |
5253
set -x # print commands that are executed
5354
./scripts/runtox.sh "py${{ matrix.python-version }}-launchdarkly"
5455
- name: Test openfeature
56+
if: ${{ !cancelled() }}
5557
run: |
5658
set -x # print commands that are executed
5759
./scripts/runtox.sh "py${{ matrix.python-version }}-openfeature"
5860
- name: Test unleash
61+
if: ${{ !cancelled() }}
5962
run: |
6063
set -x # print commands that are executed
6164
./scripts/runtox.sh "py${{ matrix.python-version }}-unleash"

.github/workflows/test-integrations-graphql.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,18 +48,22 @@ jobs:
4848
run: |
4949
coverage erase
5050
- name: Test ariadne
51+
if: ${{ !cancelled() }}
5152
run: |
5253
set -x # print commands that are executed
5354
./scripts/runtox.sh "py${{ matrix.python-version }}-ariadne"
5455
- name: Test gql
56+
if: ${{ !cancelled() }}
5557
run: |
5658
set -x # print commands that are executed
5759
./scripts/runtox.sh "py${{ matrix.python-version }}-gql"
5860
- name: Test graphene
61+
if: ${{ !cancelled() }}
5962
run: |
6063
set -x # print commands that are executed
6164
./scripts/runtox.sh "py${{ matrix.python-version }}-graphene"
6265
- name: Test strawberry
66+
if: ${{ !cancelled() }}
6367
run: |
6468
set -x # print commands that are executed
6569
./scripts/runtox.sh "py${{ matrix.python-version }}-strawberry"

.github/workflows/test-integrations-misc.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,26 +48,32 @@ jobs:
4848
run: |
4949
coverage erase
5050
- name: Test loguru
51+
if: ${{ !cancelled() }}
5152
run: |
5253
set -x # print commands that are executed
5354
./scripts/runtox.sh "py${{ matrix.python-version }}-loguru"
5455
- name: Test opentelemetry
56+
if: ${{ !cancelled() }}
5557
run: |
5658
set -x # print commands that are executed
5759
./scripts/runtox.sh "py${{ matrix.python-version }}-opentelemetry"
5860
- name: Test potel
61+
if: ${{ !cancelled() }}
5962
run: |
6063
set -x # print commands that are executed
6164
./scripts/runtox.sh "py${{ matrix.python-version }}-potel"
6265
- name: Test pure_eval
66+
if: ${{ !cancelled() }}
6367
run: |
6468
set -x # print commands that are executed
6569
./scripts/runtox.sh "py${{ matrix.python-version }}-pure_eval"
6670
- name: Test trytond
71+
if: ${{ !cancelled() }}
6772
run: |
6873
set -x # print commands that are executed
6974
./scripts/runtox.sh "py${{ matrix.python-version }}-trytond"
7075
- name: Test typer
76+
if: ${{ !cancelled() }}
7177
run: |
7278
set -x # print commands that are executed
7379
./scripts/runtox.sh "py${{ matrix.python-version }}-typer"

.github/workflows/test-integrations-network.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,18 +48,22 @@ jobs:
4848
run: |
4949
coverage erase
5050
- name: Test gevent
51+
if: ${{ !cancelled() }}
5152
run: |
5253
set -x # print commands that are executed
5354
./scripts/runtox.sh "py${{ matrix.python-version }}-gevent"
5455
- name: Test grpc
56+
if: ${{ !cancelled() }}
5557
run: |
5658
set -x # print commands that are executed
5759
./scripts/runtox.sh "py${{ matrix.python-version }}-grpc"
5860
- name: Test httpx
61+
if: ${{ !cancelled() }}
5962
run: |
6063
set -x # print commands that are executed
6164
./scripts/runtox.sh "py${{ matrix.python-version }}-httpx"
6265
- name: Test requests
66+
if: ${{ !cancelled() }}
6367
run: |
6468
set -x # print commands that are executed
6569
./scripts/runtox.sh "py${{ matrix.python-version }}-requests"

.github/workflows/test-integrations-tasks.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,34 +50,42 @@ jobs:
5050
run: |
5151
coverage erase
5252
- name: Test arq
53+
if: ${{ !cancelled() }}
5354
run: |
5455
set -x # print commands that are executed
5556
./scripts/runtox.sh "py${{ matrix.python-version }}-arq"
5657
- name: Test beam
58+
if: ${{ !cancelled() }}
5759
run: |
5860
set -x # print commands that are executed
5961
./scripts/runtox.sh "py${{ matrix.python-version }}-beam"
6062
- name: Test celery
63+
if: ${{ !cancelled() }}
6164
run: |
6265
set -x # print commands that are executed
6366
./scripts/runtox.sh "py${{ matrix.python-version }}-celery"
6467
- name: Test dramatiq
68+
if: ${{ !cancelled() }}
6569
run: |
6670
set -x # print commands that are executed
6771
./scripts/runtox.sh "py${{ matrix.python-version }}-dramatiq"
6872
- name: Test huey
73+
if: ${{ !cancelled() }}
6974
run: |
7075
set -x # print commands that are executed
7176
./scripts/runtox.sh "py${{ matrix.python-version }}-huey"
7277
- name: Test ray
78+
if: ${{ !cancelled() }}
7379
run: |
7480
set -x # print commands that are executed
7581
./scripts/runtox.sh "py${{ matrix.python-version }}-ray"
7682
- name: Test rq
83+
if: ${{ !cancelled() }}
7784
run: |
7885
set -x # print commands that are executed
7986
./scripts/runtox.sh "py${{ matrix.python-version }}-rq"
8087
- name: Test spark
88+
if: ${{ !cancelled() }}
8189
run: |
8290
set -x # print commands that are executed
8391
./scripts/runtox.sh "py${{ matrix.python-version }}-spark"

0 commit comments

Comments
 (0)