11
11
12
12
env :
13
13
CORE_REPO_SHA : ${{ github.sha }}
14
- CONTRIB_REPO_SHA : 925d8442c91ab7a89296ab20eb7cca688d4ea1cd
14
+ CONTRIB_REPO_SHA : c65e27333e7c7b6ea2e5eb56191c16f024430881
15
15
PIP_EXISTS_ACTION : w
16
16
17
17
jobs :
18
18
19
- py38-test-instrumentation-openai-v2 :
20
- name : instrumentation-openai-v2
19
+ py38-test-instrumentation-openai-v2-0 :
20
+ name : instrumentation-openai-v2-0
21
21
runs-on : ubuntu-latest
22
22
steps :
23
23
- name : Checkout contrib repo @ SHA - ${{ env.CONTRIB_REPO_SHA }}
42
42
run : pip install tox
43
43
44
44
- name : Run tests
45
- run : tox -e py38-test-instrumentation-openai-v2 -- -ra
45
+ run : tox -e py38-test-instrumentation-openai-v2-0 -- -ra
46
+
47
+ py38-test-instrumentation-openai-v2-1 :
48
+ name : instrumentation-openai-v2-1
49
+ runs-on : ubuntu-latest
50
+ steps :
51
+ - name : Checkout contrib repo @ SHA - ${{ env.CONTRIB_REPO_SHA }}
52
+ uses : actions/checkout@v4
53
+ with :
54
+ repository : open-telemetry/opentelemetry-python-contrib
55
+ ref : ${{ env.CONTRIB_REPO_SHA }}
56
+
57
+ - name : Checkout core repo @ SHA - ${{ github.sha }}
58
+ uses : actions/checkout@v4
59
+ with :
60
+ repository : open-telemetry/opentelemetry-python
61
+ path : opentelemetry-python-core
62
+
63
+ - name : Set up Python 3.8
64
+ uses : actions/setup-python@v5
65
+ with :
66
+ python-version : " 3.8"
67
+ architecture : " x64"
68
+
69
+ - name : Install tox
70
+ run : pip install tox
71
+
72
+ - name : Run tests
73
+ run : tox -e py38-test-instrumentation-openai-v2-1 -- -ra
46
74
47
75
py38-test-resource-detector-container :
48
76
name : resource-detector-container
72
100
- name : Run tests
73
101
run : tox -e py38-test-resource-detector-container -- -ra
74
102
75
- py38-test-resource-detector-azure :
76
- name : resource-detector-azure
103
+ py38-test-resource-detector-azure-0 :
104
+ name : resource-detector-azure-0
77
105
runs-on : ubuntu-latest
78
106
steps :
79
107
- name : Checkout contrib repo @ SHA - ${{ env.CONTRIB_REPO_SHA }}
@@ -98,10 +126,10 @@ jobs:
98
126
run : pip install tox
99
127
100
128
- name : Run tests
101
- run : tox -e py38-test-resource-detector-azure -- -ra
129
+ run : tox -e py38-test-resource-detector-azure-0 -- -ra
102
130
103
- py38-test-sdk-extension-aws :
104
- name : sdk-extension-aws
131
+ py38-test-resource-detector-azure-1 :
132
+ name : resource-detector-azure-1
105
133
runs-on : ubuntu-latest
106
134
steps :
107
135
- name : Checkout contrib repo @ SHA - ${{ env.CONTRIB_REPO_SHA }}
@@ -126,7 +154,63 @@ jobs:
126
154
run : pip install tox
127
155
128
156
- name : Run tests
129
- run : tox -e py38-test-sdk-extension-aws -- -ra
157
+ run : tox -e py38-test-resource-detector-azure-1 -- -ra
158
+
159
+ py38-test-sdk-extension-aws-0 :
160
+ name : sdk-extension-aws-0
161
+ runs-on : ubuntu-latest
162
+ steps :
163
+ - name : Checkout contrib repo @ SHA - ${{ env.CONTRIB_REPO_SHA }}
164
+ uses : actions/checkout@v4
165
+ with :
166
+ repository : open-telemetry/opentelemetry-python-contrib
167
+ ref : ${{ env.CONTRIB_REPO_SHA }}
168
+
169
+ - name : Checkout core repo @ SHA - ${{ github.sha }}
170
+ uses : actions/checkout@v4
171
+ with :
172
+ repository : open-telemetry/opentelemetry-python
173
+ path : opentelemetry-python-core
174
+
175
+ - name : Set up Python 3.8
176
+ uses : actions/setup-python@v5
177
+ with :
178
+ python-version : " 3.8"
179
+ architecture : " x64"
180
+
181
+ - name : Install tox
182
+ run : pip install tox
183
+
184
+ - name : Run tests
185
+ run : tox -e py38-test-sdk-extension-aws-0 -- -ra
186
+
187
+ py38-test-sdk-extension-aws-1 :
188
+ name : sdk-extension-aws-1
189
+ runs-on : ubuntu-latest
190
+ steps :
191
+ - name : Checkout contrib repo @ SHA - ${{ env.CONTRIB_REPO_SHA }}
192
+ uses : actions/checkout@v4
193
+ with :
194
+ repository : open-telemetry/opentelemetry-python-contrib
195
+ ref : ${{ env.CONTRIB_REPO_SHA }}
196
+
197
+ - name : Checkout core repo @ SHA - ${{ github.sha }}
198
+ uses : actions/checkout@v4
199
+ with :
200
+ repository : open-telemetry/opentelemetry-python
201
+ path : opentelemetry-python-core
202
+
203
+ - name : Set up Python 3.8
204
+ uses : actions/setup-python@v5
205
+ with :
206
+ python-version : " 3.8"
207
+ architecture : " x64"
208
+
209
+ - name : Install tox
210
+ run : pip install tox
211
+
212
+ - name : Run tests
213
+ run : tox -e py38-test-sdk-extension-aws-1 -- -ra
130
214
131
215
py38-test-distro :
132
216
name : distro
@@ -1584,6 +1668,34 @@ jobs:
1584
1668
- name : Run tests
1585
1669
run : tox -e py38-test-instrumentation-sqlalchemy-1 -- -ra
1586
1670
1671
+ py38-test-instrumentation-sqlalchemy-2 :
1672
+ name : instrumentation-sqlalchemy-2
1673
+ runs-on : ubuntu-latest
1674
+ steps :
1675
+ - name : Checkout contrib repo @ SHA - ${{ env.CONTRIB_REPO_SHA }}
1676
+ uses : actions/checkout@v4
1677
+ with :
1678
+ repository : open-telemetry/opentelemetry-python-contrib
1679
+ ref : ${{ env.CONTRIB_REPO_SHA }}
1680
+
1681
+ - name : Checkout core repo @ SHA - ${{ github.sha }}
1682
+ uses : actions/checkout@v4
1683
+ with :
1684
+ repository : open-telemetry/opentelemetry-python
1685
+ path : opentelemetry-python-core
1686
+
1687
+ - name : Set up Python 3.8
1688
+ uses : actions/setup-python@v5
1689
+ with :
1690
+ python-version : " 3.8"
1691
+ architecture : " x64"
1692
+
1693
+ - name : Install tox
1694
+ run : pip install tox
1695
+
1696
+ - name : Run tests
1697
+ run : tox -e py38-test-instrumentation-sqlalchemy-2 -- -ra
1698
+
1587
1699
py38-test-instrumentation-redis :
1588
1700
name : instrumentation-redis
1589
1701
runs-on : ubuntu-latest
@@ -1864,8 +1976,36 @@ jobs:
1864
1976
- name : Run tests
1865
1977
run : tox -e py38-test-util-http -- -ra
1866
1978
1867
- py38-test-propagator-aws-xray :
1868
- name : propagator-aws-xray
1979
+ py38-test-propagator-aws-xray-0 :
1980
+ name : propagator-aws-xray-0
1981
+ runs-on : ubuntu-latest
1982
+ steps :
1983
+ - name : Checkout contrib repo @ SHA - ${{ env.CONTRIB_REPO_SHA }}
1984
+ uses : actions/checkout@v4
1985
+ with :
1986
+ repository : open-telemetry/opentelemetry-python-contrib
1987
+ ref : ${{ env.CONTRIB_REPO_SHA }}
1988
+
1989
+ - name : Checkout core repo @ SHA - ${{ github.sha }}
1990
+ uses : actions/checkout@v4
1991
+ with :
1992
+ repository : open-telemetry/opentelemetry-python
1993
+ path : opentelemetry-python-core
1994
+
1995
+ - name : Set up Python 3.8
1996
+ uses : actions/setup-python@v5
1997
+ with :
1998
+ python-version : " 3.8"
1999
+ architecture : " x64"
2000
+
2001
+ - name : Install tox
2002
+ run : pip install tox
2003
+
2004
+ - name : Run tests
2005
+ run : tox -e py38-test-propagator-aws-xray-0 -- -ra
2006
+
2007
+ py38-test-propagator-aws-xray-1 :
2008
+ name : propagator-aws-xray-1
1869
2009
runs-on : ubuntu-latest
1870
2010
steps :
1871
2011
- name : Checkout contrib repo @ SHA - ${{ env.CONTRIB_REPO_SHA }}
@@ -1890,7 +2030,7 @@ jobs:
1890
2030
run : pip install tox
1891
2031
1892
2032
- name : Run tests
1893
- run : tox -e py38-test-propagator-aws-xray -- -ra
2033
+ run : tox -e py38-test-propagator-aws-xray-1 -- -ra
1894
2034
1895
2035
py38-test-propagator-ot-trace :
1896
2036
name : propagator-ot-trace
0 commit comments