@@ -3964,6 +3964,120 @@ jobs:
3964
3964
- name : Run tests
3965
3965
run : tox -e pypy3-test-util-http -- -ra
3966
3966
3967
+ py39-test-util-genai_ubuntu-latest :
3968
+ name : util-genai 3.9 Ubuntu
3969
+ runs-on : ubuntu-latest
3970
+ timeout-minutes : 30
3971
+ steps :
3972
+ - name : Checkout repo @ SHA - ${{ github.sha }}
3973
+ uses : actions/checkout@v4
3974
+
3975
+ - name : Set up Python 3.9
3976
+ uses : actions/setup-python@v5
3977
+ with :
3978
+ python-version : " 3.9"
3979
+
3980
+ - name : Install tox
3981
+ run : pip install tox-uv
3982
+
3983
+ - name : Run tests
3984
+ run : tox -e py39-test-util-genai -- -ra
3985
+
3986
+ py310-test-util-genai_ubuntu-latest :
3987
+ name : util-genai 3.10 Ubuntu
3988
+ runs-on : ubuntu-latest
3989
+ timeout-minutes : 30
3990
+ steps :
3991
+ - name : Checkout repo @ SHA - ${{ github.sha }}
3992
+ uses : actions/checkout@v4
3993
+
3994
+ - name : Set up Python 3.10
3995
+ uses : actions/setup-python@v5
3996
+ with :
3997
+ python-version : " 3.10"
3998
+
3999
+ - name : Install tox
4000
+ run : pip install tox-uv
4001
+
4002
+ - name : Run tests
4003
+ run : tox -e py310-test-util-genai -- -ra
4004
+
4005
+ py311-test-util-genai_ubuntu-latest :
4006
+ name : util-genai 3.11 Ubuntu
4007
+ runs-on : ubuntu-latest
4008
+ timeout-minutes : 30
4009
+ steps :
4010
+ - name : Checkout repo @ SHA - ${{ github.sha }}
4011
+ uses : actions/checkout@v4
4012
+
4013
+ - name : Set up Python 3.11
4014
+ uses : actions/setup-python@v5
4015
+ with :
4016
+ python-version : " 3.11"
4017
+
4018
+ - name : Install tox
4019
+ run : pip install tox-uv
4020
+
4021
+ - name : Run tests
4022
+ run : tox -e py311-test-util-genai -- -ra
4023
+
4024
+ py312-test-util-genai_ubuntu-latest :
4025
+ name : util-genai 3.12 Ubuntu
4026
+ runs-on : ubuntu-latest
4027
+ timeout-minutes : 30
4028
+ steps :
4029
+ - name : Checkout repo @ SHA - ${{ github.sha }}
4030
+ uses : actions/checkout@v4
4031
+
4032
+ - name : Set up Python 3.12
4033
+ uses : actions/setup-python@v5
4034
+ with :
4035
+ python-version : " 3.12"
4036
+
4037
+ - name : Install tox
4038
+ run : pip install tox-uv
4039
+
4040
+ - name : Run tests
4041
+ run : tox -e py312-test-util-genai -- -ra
4042
+
4043
+ py313-test-util-genai_ubuntu-latest :
4044
+ name : util-genai 3.13 Ubuntu
4045
+ runs-on : ubuntu-latest
4046
+ timeout-minutes : 30
4047
+ steps :
4048
+ - name : Checkout repo @ SHA - ${{ github.sha }}
4049
+ uses : actions/checkout@v4
4050
+
4051
+ - name : Set up Python 3.13
4052
+ uses : actions/setup-python@v5
4053
+ with :
4054
+ python-version : " 3.13"
4055
+
4056
+ - name : Install tox
4057
+ run : pip install tox-uv
4058
+
4059
+ - name : Run tests
4060
+ run : tox -e py313-test-util-genai -- -ra
4061
+
4062
+ pypy3-test-util-genai_ubuntu-latest :
4063
+ name : util-genai pypy-3.9 Ubuntu
4064
+ runs-on : ubuntu-latest
4065
+ timeout-minutes : 30
4066
+ steps :
4067
+ - name : Checkout repo @ SHA - ${{ github.sha }}
4068
+ uses : actions/checkout@v4
4069
+
4070
+ - name : Set up Python pypy-3.9
4071
+ uses : actions/setup-python@v5
4072
+ with :
4073
+ python-version : " pypy-3.9"
4074
+
4075
+ - name : Install tox
4076
+ run : pip install tox-uv
4077
+
4078
+ - name : Run tests
4079
+ run : tox -e pypy3-test-util-genai -- -ra
4080
+
3967
4081
py39-test-propagator-aws-xray-0_ubuntu-latest :
3968
4082
name : propagator-aws-xray-0 3.9 Ubuntu
3969
4083
runs-on : ubuntu-latest
@@ -4666,117 +4780,3 @@ jobs:
4666
4780
4667
4781
- name : Run tests
4668
4782
run : tox -e py310-test-instrumentation-aio-pika-2 -- -ra
4669
-
4670
- py310-test-instrumentation-aio-pika-3_ubuntu-latest :
4671
- name : instrumentation-aio-pika-3 3.10 Ubuntu
4672
- runs-on : ubuntu-latest
4673
- timeout-minutes : 30
4674
- steps :
4675
- - name : Checkout repo @ SHA - ${{ github.sha }}
4676
- uses : actions/checkout@v4
4677
-
4678
- - name : Set up Python 3.10
4679
- uses : actions/setup-python@v5
4680
- with :
4681
- python-version : " 3.10"
4682
-
4683
- - name : Install tox
4684
- run : pip install tox-uv
4685
-
4686
- - name : Run tests
4687
- run : tox -e py310-test-instrumentation-aio-pika-3 -- -ra
4688
-
4689
- py311-test-instrumentation-aio-pika-0_ubuntu-latest :
4690
- name : instrumentation-aio-pika-0 3.11 Ubuntu
4691
- runs-on : ubuntu-latest
4692
- timeout-minutes : 30
4693
- steps :
4694
- - name : Checkout repo @ SHA - ${{ github.sha }}
4695
- uses : actions/checkout@v4
4696
-
4697
- - name : Set up Python 3.11
4698
- uses : actions/setup-python@v5
4699
- with :
4700
- python-version : " 3.11"
4701
-
4702
- - name : Install tox
4703
- run : pip install tox-uv
4704
-
4705
- - name : Run tests
4706
- run : tox -e py311-test-instrumentation-aio-pika-0 -- -ra
4707
-
4708
- py311-test-instrumentation-aio-pika-1_ubuntu-latest :
4709
- name : instrumentation-aio-pika-1 3.11 Ubuntu
4710
- runs-on : ubuntu-latest
4711
- timeout-minutes : 30
4712
- steps :
4713
- - name : Checkout repo @ SHA - ${{ github.sha }}
4714
- uses : actions/checkout@v4
4715
-
4716
- - name : Set up Python 3.11
4717
- uses : actions/setup-python@v5
4718
- with :
4719
- python-version : " 3.11"
4720
-
4721
- - name : Install tox
4722
- run : pip install tox-uv
4723
-
4724
- - name : Run tests
4725
- run : tox -e py311-test-instrumentation-aio-pika-1 -- -ra
4726
-
4727
- py311-test-instrumentation-aio-pika-2_ubuntu-latest :
4728
- name : instrumentation-aio-pika-2 3.11 Ubuntu
4729
- runs-on : ubuntu-latest
4730
- timeout-minutes : 30
4731
- steps :
4732
- - name : Checkout repo @ SHA - ${{ github.sha }}
4733
- uses : actions/checkout@v4
4734
-
4735
- - name : Set up Python 3.11
4736
- uses : actions/setup-python@v5
4737
- with :
4738
- python-version : " 3.11"
4739
-
4740
- - name : Install tox
4741
- run : pip install tox-uv
4742
-
4743
- - name : Run tests
4744
- run : tox -e py311-test-instrumentation-aio-pika-2 -- -ra
4745
-
4746
- py311-test-instrumentation-aio-pika-3_ubuntu-latest :
4747
- name : instrumentation-aio-pika-3 3.11 Ubuntu
4748
- runs-on : ubuntu-latest
4749
- timeout-minutes : 30
4750
- steps :
4751
- - name : Checkout repo @ SHA - ${{ github.sha }}
4752
- uses : actions/checkout@v4
4753
-
4754
- - name : Set up Python 3.11
4755
- uses : actions/setup-python@v5
4756
- with :
4757
- python-version : " 3.11"
4758
-
4759
- - name : Install tox
4760
- run : pip install tox-uv
4761
-
4762
- - name : Run tests
4763
- run : tox -e py311-test-instrumentation-aio-pika-3 -- -ra
4764
-
4765
- py312-test-instrumentation-aio-pika-0_ubuntu-latest :
4766
- name : instrumentation-aio-pika-0 3.12 Ubuntu
4767
- runs-on : ubuntu-latest
4768
- timeout-minutes : 30
4769
- steps :
4770
- - name : Checkout repo @ SHA - ${{ github.sha }}
4771
- uses : actions/checkout@v4
4772
-
4773
- - name : Set up Python 3.12
4774
- uses : actions/setup-python@v5
4775
- with :
4776
- python-version : " 3.12"
4777
-
4778
- - name : Install tox
4779
- run : pip install tox-uv
4780
-
4781
- - name : Run tests
4782
- run : tox -e py312-test-instrumentation-aio-pika-0 -- -ra
0 commit comments