Skip to content

Commit a34f196

Browse files
committed
Add excludes
1 parent c477d94 commit a34f196

File tree

4 files changed

+44
-9
lines changed

4 files changed

+44
-9
lines changed

.github/workflows/instrumentations_0.yml

+29
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,35 @@ jobs:
7373
- "tornado"
7474
- "tortoiseorm"
7575
os: [ubuntu-20.04]
76+
exclude:
77+
- python-version: py39
78+
package: "sklearn"
79+
- python-version: py310
80+
package: "sklearn"
81+
- python-version: py311
82+
package: "sklearn"
83+
- python-version: pypy3
84+
package: "aiopg"
85+
- python-version: pypy3
86+
package: "asyncpg"
87+
- python-version: pypy3
88+
package: "boto"
89+
- python-version: pypy3
90+
package: "boto3sqs"
91+
- python-version: pypy3
92+
package: "botocore"
93+
- python-version: pypy3
94+
package: "psycopg2"
95+
- python-version: pypy3
96+
package: "remoulade"
97+
- python-version: pypy3
98+
package: "requests"
99+
- python-version: pypy3
100+
package: "sklearn"
101+
- python-version: pypy3
102+
package: "confluent-kafka"
103+
- python-version: pypy3
104+
package: "grpc"
76105
steps:
77106
- name: Checkout Contrib Repo @ SHA - ${{ github.sha }}
78107
uses: actions/checkout@v2

.github/workflows/instrumentations_1.yml

+5
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,11 @@ jobs:
3535
- "propagator-ot-trace"
3636
- "resource-detector-container"
3737
os: [ubuntu-20.04]
38+
exclude:
39+
- python-version: py311
40+
package: "prometheus-remote-write"
41+
- python-version: pypy3
42+
package: "prometheus-remote-write"
3843
steps:
3944
- name: Checkout Contrib Repo @ SHA - ${{ github.sha }}
4045
uses: actions/checkout@v2

instrumentation/opentelemetry-instrumentation-confluent-kafka/pyproject.toml

-3
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,6 @@ classifiers = [
1919
"Programming Language :: Python",
2020
"Programming Language :: Python :: 3",
2121
"Programming Language :: Python :: 3.8",
22-
"Programming Language :: Python :: 3.9",
23-
"Programming Language :: Python :: 3.10",
24-
"Programming Language :: Python :: 3.11",
2522
]
2623
dependencies = [
2724
"opentelemetry-api ~= 1.12",

tox.ini

+10-6
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,8 @@ envlist =
3535
; instrumentation-aiopg intentionally excluded from pypy3
3636

3737
; opentelemetry-instrumentation-aws-lambda
38-
py3{8,9}-test-instrumentation-aws-lambda
38+
py3{8,9,10,11}-test-instrumentation-aws-lambda
39+
pypy3-test-instrumentation-aws-lambda
3940

4041
; opentelemetry-instrumentation-botocore
4142
py3{8,9,10,11}-test-instrumentation-botocore
@@ -92,7 +93,7 @@ envlist =
9293

9394
; opentelemetry-instrumentation-urllib3
9495
py3{8,9,10,11}-test-instrumentation-urllib3v-{1,2}
95-
;pypy3-test-instrumentation-urllib3v-{1,2}
96+
pypy3-test-instrumentation-urllib3v-{1,2}
9697

9798
; opentelemetry-instrumentation-requests
9899
py3{8,9,10,11}-test-instrumentation-requests
@@ -112,9 +113,11 @@ envlist =
112113

113114
; opentelemetry-exporter-richconsole
114115
py3{8,9,10,11}-test-exporter-richconsole
116+
pypy3-test-exporter-richconsole
115117

116118
; opentelemetry-exporter-prometheus-remote-write
117-
py3{6,8,9,10}-test-exporter-prometheus-remote-write
119+
py3{6,8,9,10,11}-test-exporter-prometheus-remote-write
120+
pypy3-test-exporter-prometheus-remote-write
118121

119122
; opentelemetry-instrumentation-mysql
120123
py3{8,9,10,11}-test-instrumentation-mysql
@@ -162,6 +165,7 @@ envlist =
162165

163166
; opentelemetry-instrumentation-grpc
164167
py3{8,9,10,11}-test-instrumentation-grpc
168+
pypy3-test-instrumentation-grpc
165169

166170
; opentelemetry-instrumentation-sqlalchemy
167171
py3{8,9,10,11}-test-instrumentation-sqlalchemy-{14}
@@ -177,7 +181,7 @@ envlist =
177181

178182
; opentelemetry-instrumentation-celery
179183
py3{8,9,10,11}-test-instrumentation-celery
180-
; pypy3-test-instrumentation-celery
184+
pypy3-test-instrumentation-celery
181185

182186
; opentelemetry-instrumentation-sklearn
183187
py3{8}-test-instrumentation-sklearn
@@ -223,8 +227,8 @@ envlist =
223227
pypy3-test-instrumentation-kafka-python
224228

225229
; opentelemetry-instrumentation-confluent-kafka
226-
; // FIXME: Enable support for python 3.11 when https://github.com/confluentinc/confluent-kafka-python/issues/1452 is fixed
227-
py3{8,9,10}-test-instrumentation-confluent-kafka
230+
py3{8,9,10,11}-test-instrumentation-confluent-kafka
231+
pypy3-test-instrumentation-confluent-kafka
228232

229233
; opentelemetry-instrumentation-cassandra
230234
py3{8,9,10,11}-test-instrumentation-cassandra

0 commit comments

Comments
 (0)