@@ -2842,6 +2842,132 @@ jobs:
2842
2842
- name : Run tests
2843
2843
run : tox -e py311-test-instrumentation-boto -- -ra
2844
2844
2845
+ py38-test-instrumentation-asyncclick_ubuntu-latest :
2846
+ name : instrumentation-asyncclick 3.8 Ubuntu
2847
+ runs-on : ubuntu-latest
2848
+ steps :
2849
+ - name : Checkout repo @ SHA - ${{ github.sha }}
2850
+ uses : actions/checkout@v4
2851
+
2852
+ - name : Set up Python 3.8
2853
+ uses : actions/setup-python@v5
2854
+ with :
2855
+ python-version : " 3.8"
2856
+
2857
+ - name : Install tox
2858
+ run : pip install tox-uv
2859
+
2860
+ - name : Run tests
2861
+ run : tox -e py38-test-instrumentation-asyncclick -- -ra
2862
+
2863
+ py39-test-instrumentation-asyncclick_ubuntu-latest :
2864
+ name : instrumentation-asyncclick 3.9 Ubuntu
2865
+ runs-on : ubuntu-latest
2866
+ steps :
2867
+ - name : Checkout repo @ SHA - ${{ github.sha }}
2868
+ uses : actions/checkout@v4
2869
+
2870
+ - name : Set up Python 3.9
2871
+ uses : actions/setup-python@v5
2872
+ with :
2873
+ python-version : " 3.9"
2874
+
2875
+ - name : Install tox
2876
+ run : pip install tox-uv
2877
+
2878
+ - name : Run tests
2879
+ run : tox -e py39-test-instrumentation-asyncclick -- -ra
2880
+
2881
+ py310-test-instrumentation-asyncclick_ubuntu-latest :
2882
+ name : instrumentation-asyncclick 3.10 Ubuntu
2883
+ runs-on : ubuntu-latest
2884
+ steps :
2885
+ - name : Checkout repo @ SHA - ${{ github.sha }}
2886
+ uses : actions/checkout@v4
2887
+
2888
+ - name : Set up Python 3.10
2889
+ uses : actions/setup-python@v5
2890
+ with :
2891
+ python-version : " 3.10"
2892
+
2893
+ - name : Install tox
2894
+ run : pip install tox-uv
2895
+
2896
+ - name : Run tests
2897
+ run : tox -e py310-test-instrumentation-asyncclick -- -ra
2898
+
2899
+ py311-test-instrumentation-asyncclick_ubuntu-latest :
2900
+ name : instrumentation-asyncclick 3.11 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 3.11
2907
+ uses : actions/setup-python@v5
2908
+ with :
2909
+ python-version : " 3.11"
2910
+
2911
+ - name : Install tox
2912
+ run : pip install tox-uv
2913
+
2914
+ - name : Run tests
2915
+ run : tox -e py311-test-instrumentation-asyncclick -- -ra
2916
+
2917
+ py312-test-instrumentation-asyncclick_ubuntu-latest :
2918
+ name : instrumentation-asyncclick 3.12 Ubuntu
2919
+ runs-on : ubuntu-latest
2920
+ steps :
2921
+ - name : Checkout repo @ SHA - ${{ github.sha }}
2922
+ uses : actions/checkout@v4
2923
+
2924
+ - name : Set up Python 3.12
2925
+ uses : actions/setup-python@v5
2926
+ with :
2927
+ python-version : " 3.12"
2928
+
2929
+ - name : Install tox
2930
+ run : pip install tox-uv
2931
+
2932
+ - name : Run tests
2933
+ run : tox -e py312-test-instrumentation-asyncclick -- -ra
2934
+
2935
+ py313-test-instrumentation-asyncclick_ubuntu-latest :
2936
+ name : instrumentation-asyncclick 3.13 Ubuntu
2937
+ runs-on : ubuntu-latest
2938
+ steps :
2939
+ - name : Checkout repo @ SHA - ${{ github.sha }}
2940
+ uses : actions/checkout@v4
2941
+
2942
+ - name : Set up Python 3.13
2943
+ uses : actions/setup-python@v5
2944
+ with :
2945
+ python-version : " 3.13"
2946
+
2947
+ - name : Install tox
2948
+ run : pip install tox-uv
2949
+
2950
+ - name : Run tests
2951
+ run : tox -e py313-test-instrumentation-asyncclick -- -ra
2952
+
2953
+ pypy3-test-instrumentation-asyncclick_ubuntu-latest :
2954
+ name : instrumentation-asyncclick pypy-3.8 Ubuntu
2955
+ runs-on : ubuntu-latest
2956
+ steps :
2957
+ - name : Checkout repo @ SHA - ${{ github.sha }}
2958
+ uses : actions/checkout@v4
2959
+
2960
+ - name : Set up Python pypy-3.8
2961
+ uses : actions/setup-python@v5
2962
+ with :
2963
+ python-version : " pypy-3.8"
2964
+
2965
+ - name : Install tox
2966
+ run : pip install tox-uv
2967
+
2968
+ - name : Run tests
2969
+ run : tox -e pypy3-test-instrumentation-asyncclick -- -ra
2970
+
2845
2971
py38-test-instrumentation-click_ubuntu-latest :
2846
2972
name : instrumentation-click 3.8 Ubuntu
2847
2973
runs-on : ubuntu-latest
@@ -4389,129 +4515,3 @@ jobs:
4389
4515
4390
4516
- name : Run tests
4391
4517
run : tox -e py312-test-instrumentation-urllib -- -ra
4392
-
4393
- py313-test-instrumentation-urllib_ubuntu-latest :
4394
- name : instrumentation-urllib 3.13 Ubuntu
4395
- runs-on : ubuntu-latest
4396
- steps :
4397
- - name : Checkout repo @ SHA - ${{ github.sha }}
4398
- uses : actions/checkout@v4
4399
-
4400
- - name : Set up Python 3.13
4401
- uses : actions/setup-python@v5
4402
- with :
4403
- python-version : " 3.13"
4404
-
4405
- - name : Install tox
4406
- run : pip install tox-uv
4407
-
4408
- - name : Run tests
4409
- run : tox -e py313-test-instrumentation-urllib -- -ra
4410
-
4411
- pypy3-test-instrumentation-urllib_ubuntu-latest :
4412
- name : instrumentation-urllib pypy-3.8 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 pypy-3.8
4419
- uses : actions/setup-python@v5
4420
- with :
4421
- python-version : " pypy-3.8"
4422
-
4423
- - name : Install tox
4424
- run : pip install tox-uv
4425
-
4426
- - name : Run tests
4427
- run : tox -e pypy3-test-instrumentation-urllib -- -ra
4428
-
4429
- py38-test-instrumentation-urllib3-0_ubuntu-latest :
4430
- name : instrumentation-urllib3-0 3.8 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.8
4437
- uses : actions/setup-python@v5
4438
- with :
4439
- python-version : " 3.8"
4440
-
4441
- - name : Install tox
4442
- run : pip install tox-uv
4443
-
4444
- - name : Run tests
4445
- run : tox -e py38-test-instrumentation-urllib3-0 -- -ra
4446
-
4447
- py38-test-instrumentation-urllib3-1_ubuntu-latest :
4448
- name : instrumentation-urllib3-1 3.8 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.8
4455
- uses : actions/setup-python@v5
4456
- with :
4457
- python-version : " 3.8"
4458
-
4459
- - name : Install tox
4460
- run : pip install tox-uv
4461
-
4462
- - name : Run tests
4463
- run : tox -e py38-test-instrumentation-urllib3-1 -- -ra
4464
-
4465
- py39-test-instrumentation-urllib3-0_ubuntu-latest :
4466
- name : instrumentation-urllib3-0 3.9 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.9
4473
- uses : actions/setup-python@v5
4474
- with :
4475
- python-version : " 3.9"
4476
-
4477
- - name : Install tox
4478
- run : pip install tox-uv
4479
-
4480
- - name : Run tests
4481
- run : tox -e py39-test-instrumentation-urllib3-0 -- -ra
4482
-
4483
- py39-test-instrumentation-urllib3-1_ubuntu-latest :
4484
- name : instrumentation-urllib3-1 3.9 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.9
4491
- uses : actions/setup-python@v5
4492
- with :
4493
- python-version : " 3.9"
4494
-
4495
- - name : Install tox
4496
- run : pip install tox-uv
4497
-
4498
- - name : Run tests
4499
- run : tox -e py39-test-instrumentation-urllib3-1 -- -ra
4500
-
4501
- py310-test-instrumentation-urllib3-0_ubuntu-latest :
4502
- name : instrumentation-urllib3-0 3.10 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.10
4509
- uses : actions/setup-python@v5
4510
- with :
4511
- python-version : " 3.10"
4512
-
4513
- - name : Install tox
4514
- run : pip install tox-uv
4515
-
4516
- - name : Run tests
4517
- run : tox -e py310-test-instrumentation-urllib3-0 -- -ra
0 commit comments