@@ -2518,6 +2518,24 @@ jobs:
2518
2518
- name : Run tests
2519
2519
run : tox -e py38-test-instrumentation-falcon-2 -- -ra
2520
2520
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
+
2521
2539
py39-test-instrumentation-falcon-0_ubuntu-latest :
2522
2540
name : instrumentation-falcon-0 3.9 Ubuntu
2523
2541
runs-on : ubuntu-latest
@@ -2572,6 +2590,24 @@ jobs:
2572
2590
- name : Run tests
2573
2591
run : tox -e py39-test-instrumentation-falcon-2 -- -ra
2574
2592
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
+
2575
2611
py310-test-instrumentation-falcon-1_ubuntu-latest :
2576
2612
name : instrumentation-falcon-1 3.10 Ubuntu
2577
2613
runs-on : ubuntu-latest
@@ -2626,6 +2662,24 @@ jobs:
2626
2662
- name : Run tests
2627
2663
run : tox -e py310-test-instrumentation-falcon-3 -- -ra
2628
2664
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
+
2629
2683
py311-test-instrumentation-falcon-1_ubuntu-latest :
2630
2684
name : instrumentation-falcon-1 3.11 Ubuntu
2631
2685
runs-on : ubuntu-latest
@@ -2680,6 +2734,24 @@ jobs:
2680
2734
- name : Run tests
2681
2735
run : tox -e py311-test-instrumentation-falcon-3 -- -ra
2682
2736
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
+
2683
2755
py312-test-instrumentation-falcon-1_ubuntu-latest :
2684
2756
name : instrumentation-falcon-1 3.12 Ubuntu
2685
2757
runs-on : ubuntu-latest
@@ -2734,6 +2806,24 @@ jobs:
2734
2806
- name : Run tests
2735
2807
run : tox -e py312-test-instrumentation-falcon-3 -- -ra
2736
2808
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
+
2737
2827
pypy3-test-instrumentation-falcon-0_ubuntu-latest :
2738
2828
name : instrumentation-falcon-0 pypy-3.8 Ubuntu
2739
2829
runs-on : ubuntu-latest
@@ -2806,6 +2896,24 @@ jobs:
2806
2896
- name : Run tests
2807
2897
run : tox -e pypy3-test-instrumentation-falcon-3 -- -ra
2808
2898
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
+
2809
2917
py38-test-instrumentation-fastapi_ubuntu-latest :
2810
2918
name : instrumentation-fastapi 3.8 Ubuntu
2811
2919
runs-on : ubuntu-latest
@@ -4407,111 +4515,3 @@ jobs:
4407
4515
4408
4516
- name : Run tests
4409
4517
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