Skip to content

Commit a9e5bca

Browse files
committed
opentelemetry-instrumentation-falcon: add test preset for ~=3.1.2
1 parent ab02af3 commit a9e5bca

File tree

7 files changed

+370
-222
lines changed

7 files changed

+370
-222
lines changed

Diff for: .github/workflows/core_contrib_test_0.yml

+22
Original file line numberDiff line numberDiff line change
@@ -613,6 +613,28 @@ jobs:
613613
- name: Run tests
614614
run: tox -e py38-test-instrumentation-falcon-2 -- -ra
615615

616+
py38-test-instrumentation-falcon-3:
617+
name: instrumentation-falcon-3
618+
runs-on: ubuntu-latest
619+
steps:
620+
- name: Checkout contrib repo @ SHA - ${{ env.CONTRIB_REPO_SHA }}
621+
uses: actions/checkout@v4
622+
with:
623+
repository: open-telemetry/opentelemetry-python-contrib
624+
ref: ${{ env.CONTRIB_REPO_SHA }}
625+
626+
- name: Set up Python 3.8
627+
uses: actions/setup-python@v5
628+
with:
629+
python-version: "3.8"
630+
architecture: "x64"
631+
632+
- name: Install tox
633+
run: pip install tox
634+
635+
- name: Run tests
636+
run: tox -e py38-test-instrumentation-falcon-3 -- -ra
637+
616638
py38-test-instrumentation-fastapi:
617639
name: instrumentation-fastapi
618640
runs-on: ubuntu-latest

Diff for: .github/workflows/test_0.yml

+108-108
Original file line numberDiff line numberDiff line change
@@ -2518,6 +2518,24 @@ jobs:
25182518
- name: Run tests
25192519
run: tox -e py38-test-instrumentation-falcon-2 -- -ra
25202520

2521+
py38-test-instrumentation-falcon-3_ubuntu-latest:
2522+
name: instrumentation-falcon-3 3.8 Ubuntu
2523+
runs-on: ubuntu-latest
2524+
steps:
2525+
- name: Checkout repo @ SHA - ${{ github.sha }}
2526+
uses: actions/checkout@v4
2527+
2528+
- name: Set up Python 3.8
2529+
uses: actions/setup-python@v5
2530+
with:
2531+
python-version: "3.8"
2532+
2533+
- name: Install tox
2534+
run: pip install tox
2535+
2536+
- name: Run tests
2537+
run: tox -e py38-test-instrumentation-falcon-3 -- -ra
2538+
25212539
py39-test-instrumentation-falcon-0_ubuntu-latest:
25222540
name: instrumentation-falcon-0 3.9 Ubuntu
25232541
runs-on: ubuntu-latest
@@ -2572,6 +2590,24 @@ jobs:
25722590
- name: Run tests
25732591
run: tox -e py39-test-instrumentation-falcon-2 -- -ra
25742592

2593+
py39-test-instrumentation-falcon-3_ubuntu-latest:
2594+
name: instrumentation-falcon-3 3.9 Ubuntu
2595+
runs-on: ubuntu-latest
2596+
steps:
2597+
- name: Checkout repo @ SHA - ${{ github.sha }}
2598+
uses: actions/checkout@v4
2599+
2600+
- name: Set up Python 3.9
2601+
uses: actions/setup-python@v5
2602+
with:
2603+
python-version: "3.9"
2604+
2605+
- name: Install tox
2606+
run: pip install tox
2607+
2608+
- name: Run tests
2609+
run: tox -e py39-test-instrumentation-falcon-3 -- -ra
2610+
25752611
py310-test-instrumentation-falcon-1_ubuntu-latest:
25762612
name: instrumentation-falcon-1 3.10 Ubuntu
25772613
runs-on: ubuntu-latest
@@ -2626,6 +2662,24 @@ jobs:
26262662
- name: Run tests
26272663
run: tox -e py310-test-instrumentation-falcon-3 -- -ra
26282664

2665+
py310-test-instrumentation-falcon-4_ubuntu-latest:
2666+
name: instrumentation-falcon-4 3.10 Ubuntu
2667+
runs-on: ubuntu-latest
2668+
steps:
2669+
- name: Checkout repo @ SHA - ${{ github.sha }}
2670+
uses: actions/checkout@v4
2671+
2672+
- name: Set up Python 3.10
2673+
uses: actions/setup-python@v5
2674+
with:
2675+
python-version: "3.10"
2676+
2677+
- name: Install tox
2678+
run: pip install tox
2679+
2680+
- name: Run tests
2681+
run: tox -e py310-test-instrumentation-falcon-4 -- -ra
2682+
26292683
py311-test-instrumentation-falcon-1_ubuntu-latest:
26302684
name: instrumentation-falcon-1 3.11 Ubuntu
26312685
runs-on: ubuntu-latest
@@ -2680,6 +2734,24 @@ jobs:
26802734
- name: Run tests
26812735
run: tox -e py311-test-instrumentation-falcon-3 -- -ra
26822736

2737+
py311-test-instrumentation-falcon-4_ubuntu-latest:
2738+
name: instrumentation-falcon-4 3.11 Ubuntu
2739+
runs-on: ubuntu-latest
2740+
steps:
2741+
- name: Checkout repo @ SHA - ${{ github.sha }}
2742+
uses: actions/checkout@v4
2743+
2744+
- name: Set up Python 3.11
2745+
uses: actions/setup-python@v5
2746+
with:
2747+
python-version: "3.11"
2748+
2749+
- name: Install tox
2750+
run: pip install tox
2751+
2752+
- name: Run tests
2753+
run: tox -e py311-test-instrumentation-falcon-4 -- -ra
2754+
26832755
py312-test-instrumentation-falcon-1_ubuntu-latest:
26842756
name: instrumentation-falcon-1 3.12 Ubuntu
26852757
runs-on: ubuntu-latest
@@ -2734,6 +2806,24 @@ jobs:
27342806
- name: Run tests
27352807
run: tox -e py312-test-instrumentation-falcon-3 -- -ra
27362808

2809+
py312-test-instrumentation-falcon-4_ubuntu-latest:
2810+
name: instrumentation-falcon-4 3.12 Ubuntu
2811+
runs-on: ubuntu-latest
2812+
steps:
2813+
- name: Checkout repo @ SHA - ${{ github.sha }}
2814+
uses: actions/checkout@v4
2815+
2816+
- name: Set up Python 3.12
2817+
uses: actions/setup-python@v5
2818+
with:
2819+
python-version: "3.12"
2820+
2821+
- name: Install tox
2822+
run: pip install tox
2823+
2824+
- name: Run tests
2825+
run: tox -e py312-test-instrumentation-falcon-4 -- -ra
2826+
27372827
pypy3-test-instrumentation-falcon-0_ubuntu-latest:
27382828
name: instrumentation-falcon-0 pypy-3.8 Ubuntu
27392829
runs-on: ubuntu-latest
@@ -2806,6 +2896,24 @@ jobs:
28062896
- name: Run tests
28072897
run: tox -e pypy3-test-instrumentation-falcon-3 -- -ra
28082898

2899+
pypy3-test-instrumentation-falcon-4_ubuntu-latest:
2900+
name: instrumentation-falcon-4 pypy-3.8 Ubuntu
2901+
runs-on: ubuntu-latest
2902+
steps:
2903+
- name: Checkout repo @ SHA - ${{ github.sha }}
2904+
uses: actions/checkout@v4
2905+
2906+
- name: Set up Python pypy-3.8
2907+
uses: actions/setup-python@v5
2908+
with:
2909+
python-version: "pypy-3.8"
2910+
2911+
- name: Install tox
2912+
run: pip install tox
2913+
2914+
- name: Run tests
2915+
run: tox -e pypy3-test-instrumentation-falcon-4 -- -ra
2916+
28092917
py38-test-instrumentation-fastapi_ubuntu-latest:
28102918
name: instrumentation-fastapi 3.8 Ubuntu
28112919
runs-on: ubuntu-latest
@@ -4407,111 +4515,3 @@ jobs:
44074515

44084516
- name: Run tests
44094517
run: tox -e py38-test-instrumentation-mysqlclient -- -ra
4410-
4411-
py39-test-instrumentation-mysqlclient_ubuntu-latest:
4412-
name: instrumentation-mysqlclient 3.9 Ubuntu
4413-
runs-on: ubuntu-latest
4414-
steps:
4415-
- name: Checkout repo @ SHA - ${{ github.sha }}
4416-
uses: actions/checkout@v4
4417-
4418-
- name: Set up Python 3.9
4419-
uses: actions/setup-python@v5
4420-
with:
4421-
python-version: "3.9"
4422-
4423-
- name: Install tox
4424-
run: pip install tox
4425-
4426-
- name: Run tests
4427-
run: tox -e py39-test-instrumentation-mysqlclient -- -ra
4428-
4429-
py310-test-instrumentation-mysqlclient_ubuntu-latest:
4430-
name: instrumentation-mysqlclient 3.10 Ubuntu
4431-
runs-on: ubuntu-latest
4432-
steps:
4433-
- name: Checkout repo @ SHA - ${{ github.sha }}
4434-
uses: actions/checkout@v4
4435-
4436-
- name: Set up Python 3.10
4437-
uses: actions/setup-python@v5
4438-
with:
4439-
python-version: "3.10"
4440-
4441-
- name: Install tox
4442-
run: pip install tox
4443-
4444-
- name: Run tests
4445-
run: tox -e py310-test-instrumentation-mysqlclient -- -ra
4446-
4447-
py311-test-instrumentation-mysqlclient_ubuntu-latest:
4448-
name: instrumentation-mysqlclient 3.11 Ubuntu
4449-
runs-on: ubuntu-latest
4450-
steps:
4451-
- name: Checkout repo @ SHA - ${{ github.sha }}
4452-
uses: actions/checkout@v4
4453-
4454-
- name: Set up Python 3.11
4455-
uses: actions/setup-python@v5
4456-
with:
4457-
python-version: "3.11"
4458-
4459-
- name: Install tox
4460-
run: pip install tox
4461-
4462-
- name: Run tests
4463-
run: tox -e py311-test-instrumentation-mysqlclient -- -ra
4464-
4465-
py312-test-instrumentation-mysqlclient_ubuntu-latest:
4466-
name: instrumentation-mysqlclient 3.12 Ubuntu
4467-
runs-on: ubuntu-latest
4468-
steps:
4469-
- name: Checkout repo @ SHA - ${{ github.sha }}
4470-
uses: actions/checkout@v4
4471-
4472-
- name: Set up Python 3.12
4473-
uses: actions/setup-python@v5
4474-
with:
4475-
python-version: "3.12"
4476-
4477-
- name: Install tox
4478-
run: pip install tox
4479-
4480-
- name: Run tests
4481-
run: tox -e py312-test-instrumentation-mysqlclient -- -ra
4482-
4483-
pypy3-test-instrumentation-mysqlclient_ubuntu-latest:
4484-
name: instrumentation-mysqlclient pypy-3.8 Ubuntu
4485-
runs-on: ubuntu-latest
4486-
steps:
4487-
- name: Checkout repo @ SHA - ${{ github.sha }}
4488-
uses: actions/checkout@v4
4489-
4490-
- name: Set up Python pypy-3.8
4491-
uses: actions/setup-python@v5
4492-
with:
4493-
python-version: "pypy-3.8"
4494-
4495-
- name: Install tox
4496-
run: pip install tox
4497-
4498-
- name: Run tests
4499-
run: tox -e pypy3-test-instrumentation-mysqlclient -- -ra
4500-
4501-
py38-test-instrumentation-psycopg2_ubuntu-latest:
4502-
name: instrumentation-psycopg2 3.8 Ubuntu
4503-
runs-on: ubuntu-latest
4504-
steps:
4505-
- name: Checkout repo @ SHA - ${{ github.sha }}
4506-
uses: actions/checkout@v4
4507-
4508-
- name: Set up Python 3.8
4509-
uses: actions/setup-python@v5
4510-
with:
4511-
python-version: "3.8"
4512-
4513-
- name: Install tox
4514-
run: pip install tox
4515-
4516-
- name: Run tests
4517-
run: tox -e py38-test-instrumentation-psycopg2 -- -ra

0 commit comments

Comments
 (0)