Skip to content

Commit 34beb0b

Browse files
committed
fix workflows
Signed-off-by: emdneto <9735060+emdneto@users.noreply.github.com>
1 parent 6107375 commit 34beb0b

2 files changed

Lines changed: 58 additions & 1 deletion

File tree

.github/workflows/test_2.yml

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3091,6 +3091,25 @@ jobs:
30913091
- name: Run tests
30923092
run: tox -e py313-test-instrumentation-asyncio -- -ra
30933093

3094+
py314-test-instrumentation-asyncio_ubuntu-latest:
3095+
name: instrumentation-asyncio 3.14 Ubuntu
3096+
runs-on: ubuntu-latest
3097+
timeout-minutes: 30
3098+
steps:
3099+
- name: Checkout repo @ SHA - ${{ github.sha }}
3100+
uses: actions/checkout@v4
3101+
3102+
- name: Set up Python 3.14
3103+
uses: actions/setup-python@v5
3104+
with:
3105+
python-version: "3.14"
3106+
3107+
- name: Install tox
3108+
run: pip install tox-uv
3109+
3110+
- name: Run tests
3111+
run: tox -e py314-test-instrumentation-asyncio -- -ra
3112+
30943113
py39-test-instrumentation-cassandra-driver_ubuntu-latest:
30953114
name: instrumentation-cassandra-driver 3.9 Ubuntu
30963115
runs-on: ubuntu-latest
@@ -3281,6 +3300,44 @@ jobs:
32813300
- name: Run tests
32823301
run: tox -e py313-test-instrumentation-cassandra-scylla -- -ra
32833302

3303+
py314-test-instrumentation-cassandra-driver_ubuntu-latest:
3304+
name: instrumentation-cassandra-driver 3.14 Ubuntu
3305+
runs-on: ubuntu-latest
3306+
timeout-minutes: 30
3307+
steps:
3308+
- name: Checkout repo @ SHA - ${{ github.sha }}
3309+
uses: actions/checkout@v4
3310+
3311+
- name: Set up Python 3.14
3312+
uses: actions/setup-python@v5
3313+
with:
3314+
python-version: "3.14"
3315+
3316+
- name: Install tox
3317+
run: pip install tox-uv
3318+
3319+
- name: Run tests
3320+
run: tox -e py314-test-instrumentation-cassandra-driver -- -ra
3321+
3322+
py314-test-instrumentation-cassandra-scylla_ubuntu-latest:
3323+
name: instrumentation-cassandra-scylla 3.14 Ubuntu
3324+
runs-on: ubuntu-latest
3325+
timeout-minutes: 30
3326+
steps:
3327+
- name: Checkout repo @ SHA - ${{ github.sha }}
3328+
uses: actions/checkout@v4
3329+
3330+
- name: Set up Python 3.14
3331+
uses: actions/setup-python@v5
3332+
with:
3333+
python-version: "3.14"
3334+
3335+
- name: Install tox
3336+
run: pip install tox-uv
3337+
3338+
- name: Run tests
3339+
run: tox -e py314-test-instrumentation-cassandra-scylla -- -ra
3340+
32843341
pypy3-test-instrumentation-cassandra-scylla_ubuntu-latest:
32853342
name: instrumentation-cassandra-scylla pypy-3.9 Ubuntu
32863343
runs-on: ubuntu-latest

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -430,7 +430,7 @@ envlist =
430430
lint-instrumentation-asyncio
431431

432432
; opentelemetry-instrumentation-cassandra
433-
py3{9,10,11,12,13}-test-instrumentation-cassandra-{driver,scylla}
433+
py3{9,10,11,12,13,14}-test-instrumentation-cassandra-{driver,scylla}
434434
pypy3-test-instrumentation-cassandra-scylla
435435
lint-instrumentation-cassandra
436436

0 commit comments

Comments
 (0)