@@ -2608,6 +2608,24 @@ jobs:
26082608 - name : Run tests
26092609 run : tox -e py310-test-instrumentation-falcon-2 -- -ra
26102610
2611+ py310-test-instrumentation-falcon-3_ubuntu-latest :
2612+ name : instrumentation-falcon-3 3.10 Ubuntu
2613+ runs-on : ubuntu-latest
2614+ steps :
2615+ - name : Checkout repo @ SHA - ${{ github.sha }}
2616+ uses : actions/checkout@v4
2617+
2618+ - name : Set up Python 3.10
2619+ uses : actions/setup-python@v5
2620+ with :
2621+ python-version : " 3.10"
2622+
2623+ - name : Install tox
2624+ run : pip install tox
2625+
2626+ - name : Run tests
2627+ run : tox -e py310-test-instrumentation-falcon-3 -- -ra
2628+
26112629 py311-test-instrumentation-falcon-1_ubuntu-latest :
26122630 name : instrumentation-falcon-1 3.11 Ubuntu
26132631 runs-on : ubuntu-latest
@@ -2644,6 +2662,24 @@ jobs:
26442662 - name : Run tests
26452663 run : tox -e py311-test-instrumentation-falcon-2 -- -ra
26462664
2665+ py311-test-instrumentation-falcon-3_ubuntu-latest :
2666+ name : instrumentation-falcon-3 3.11 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.11
2673+ uses : actions/setup-python@v5
2674+ with :
2675+ python-version : " 3.11"
2676+
2677+ - name : Install tox
2678+ run : pip install tox
2679+
2680+ - name : Run tests
2681+ run : tox -e py311-test-instrumentation-falcon-3 -- -ra
2682+
26472683 py312-test-instrumentation-falcon-1_ubuntu-latest :
26482684 name : instrumentation-falcon-1 3.12 Ubuntu
26492685 runs-on : ubuntu-latest
@@ -2680,6 +2716,24 @@ jobs:
26802716 - name : Run tests
26812717 run : tox -e py312-test-instrumentation-falcon-2 -- -ra
26822718
2719+ py312-test-instrumentation-falcon-3_ubuntu-latest :
2720+ name : instrumentation-falcon-3 3.12 Ubuntu
2721+ runs-on : ubuntu-latest
2722+ steps :
2723+ - name : Checkout repo @ SHA - ${{ github.sha }}
2724+ uses : actions/checkout@v4
2725+
2726+ - name : Set up Python 3.12
2727+ uses : actions/setup-python@v5
2728+ with :
2729+ python-version : " 3.12"
2730+
2731+ - name : Install tox
2732+ run : pip install tox
2733+
2734+ - name : Run tests
2735+ run : tox -e py312-test-instrumentation-falcon-3 -- -ra
2736+
26832737 pypy3-test-instrumentation-falcon-0_ubuntu-latest :
26842738 name : instrumentation-falcon-0 pypy-3.8 Ubuntu
26852739 runs-on : ubuntu-latest
@@ -2734,6 +2788,24 @@ jobs:
27342788 - name : Run tests
27352789 run : tox -e pypy3-test-instrumentation-falcon-2 -- -ra
27362790
2791+ pypy3-test-instrumentation-falcon-3_ubuntu-latest :
2792+ name : instrumentation-falcon-3 pypy-3.8 Ubuntu
2793+ runs-on : ubuntu-latest
2794+ steps :
2795+ - name : Checkout repo @ SHA - ${{ github.sha }}
2796+ uses : actions/checkout@v4
2797+
2798+ - name : Set up Python pypy-3.8
2799+ uses : actions/setup-python@v5
2800+ with :
2801+ python-version : " pypy-3.8"
2802+
2803+ - name : Install tox
2804+ run : pip install tox
2805+
2806+ - name : Run tests
2807+ run : tox -e pypy3-test-instrumentation-falcon-3 -- -ra
2808+
27372809 py38-test-instrumentation-fastapi_ubuntu-latest :
27382810 name : instrumentation-fastapi 3.8 Ubuntu
27392811 runs-on : ubuntu-latest
@@ -4443,75 +4515,3 @@ jobs:
44434515
44444516 - name : Run tests
44454517 run : tox -e py38-test-instrumentation-psycopg2 -- -ra
4446-
4447- py39-test-instrumentation-psycopg2_ubuntu-latest :
4448- name : instrumentation-psycopg2 3.9 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.9
4455- uses : actions/setup-python@v5
4456- with :
4457- python-version : " 3.9"
4458-
4459- - name : Install tox
4460- run : pip install tox
4461-
4462- - name : Run tests
4463- run : tox -e py39-test-instrumentation-psycopg2 -- -ra
4464-
4465- py310-test-instrumentation-psycopg2_ubuntu-latest :
4466- name : instrumentation-psycopg2 3.10 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.10
4473- uses : actions/setup-python@v5
4474- with :
4475- python-version : " 3.10"
4476-
4477- - name : Install tox
4478- run : pip install tox
4479-
4480- - name : Run tests
4481- run : tox -e py310-test-instrumentation-psycopg2 -- -ra
4482-
4483- py311-test-instrumentation-psycopg2_ubuntu-latest :
4484- name : instrumentation-psycopg2 3.11 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 3.11
4491- uses : actions/setup-python@v5
4492- with :
4493- python-version : " 3.11"
4494-
4495- - name : Install tox
4496- run : pip install tox
4497-
4498- - name : Run tests
4499- run : tox -e py311-test-instrumentation-psycopg2 -- -ra
4500-
4501- py312-test-instrumentation-psycopg2_ubuntu-latest :
4502- name : instrumentation-psycopg2 3.12 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.12
4509- uses : actions/setup-python@v5
4510- with :
4511- python-version : " 3.12"
4512-
4513- - name : Install tox
4514- run : pip install tox
4515-
4516- - name : Run tests
4517- run : tox -e py312-test-instrumentation-psycopg2 -- -ra
0 commit comments