Skip to content

Commit 714ce35

Browse files
authored
Merge branch 'main' into upgrade-markupsafe
2 parents fe4c4a6 + 975733c commit 714ce35

File tree

2 files changed

+72
-3
lines changed

2 files changed

+72
-3
lines changed

.github/workflows/test.yml

+70-3
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,28 @@ jobs:
3636
fail-fast: false # ensures the entire test matrix is run, even if one permutation fails
3737
matrix:
3838
python-version: [py37, py38, py39, py310, py311, pypy3]
39-
package: ["api", "sdk", "semantic", "getting", "shim", "exporter", "protobuf",
40-
"propagator"]
39+
package:
40+
- "api"
41+
- "sdk"
42+
- "semantic-conventions"
43+
- "getting-started"
44+
- "opentracing-shim"
45+
- "opencensus-shim"
46+
- "exporter-jaeger-combined"
47+
- "exporter-jaeger-proto-grpc"
48+
- "exporter-jaeger-thrift"
49+
- "exporter-opencensus"
50+
- "exporter-otlp-proto-common"
51+
- "exporter-otlp-combined"
52+
- "exporter-otlp-proto-grpc"
53+
- "exporter-otlp-proto-http"
54+
- "exporter-prometheus"
55+
- "exporter-zipkin-combined"
56+
- "exporter-zipkin-proto-http"
57+
- "exporter-zipkin-json"
58+
- "protobuf"
59+
- "propagator-b3"
60+
- "propagator-jaeger"
4161
os: [ubuntu-20.04, windows-2019]
4262
steps:
4363
- name: Checkout Core Repo @ SHA - ${{ github.sha }}
@@ -106,7 +126,54 @@ jobs:
106126
fail-fast: false # ensures the entire test matrix is run, even if one permutation fails
107127
matrix:
108128
python-version: [py37]
109-
package: ["instrumentation", "exporter"]
129+
package:
130+
- "aiohttp-client"
131+
- "aiohttp-server"
132+
- "aiopg"
133+
- "aio-pika"
134+
- "asgi"
135+
- "asyncpg"
136+
- "aws-lambda"
137+
- "boto"
138+
- "boto3sqs"
139+
- "botocore"
140+
- "cassandra"
141+
- "celery"
142+
- "confluent-kafka"
143+
- "dbapi"
144+
- "django"
145+
- "elasticsearch"
146+
- "falcon"
147+
- "fastapi"
148+
- "flask"
149+
- "grpc"
150+
- "httpx"
151+
- "jinja2"
152+
- "kafka-python"
153+
- "logging"
154+
- "mysql"
155+
- "mysqlclient"
156+
- "pika"
157+
- "psycopg2"
158+
- "pymemcache"
159+
- "pymongo"
160+
- "pymysql"
161+
- "pyramid"
162+
- "redis"
163+
- "remoulade"
164+
- "requests"
165+
- "sklearn"
166+
- "sqlalchemy"
167+
- "sqlite3"
168+
- "starlette"
169+
- "system-metrics"
170+
- "tornado"
171+
- "tortoiseorm"
172+
- "urllib"
173+
- "urllib3"
174+
- "wsgi"
175+
- "prometheus-remote-write"
176+
- "richconsole"
110177
os: [ubuntu-20.04]
111178
steps:
112179
- name: Checkout Contrib Repo @ SHA - ${{ env.CONTRIB_REPO_SHA }}

tox.ini

+2
Original file line numberDiff line numberDiff line change
@@ -268,6 +268,8 @@ deps =
268268
pytest==7.1.3
269269
# Pinning PyYAML for issue: https://github.com/yaml/pyyaml/issues/724
270270
PyYAML==5.3.1
271+
# Pinning docker for issue: https://github.com/docker/compose/issues/11309
272+
docker<7
271273
docker-compose==1.29.2
272274
requests==2.28.2
273275

0 commit comments

Comments
 (0)