Skip to content

Commit

Permalink
Remove [test] package from starlette instrumentation
Browse files Browse the repository at this point in the history
Fixes #2221
  • Loading branch information
ocelotl committed Mar 15, 2024
1 parent e56cdc8 commit 88de0a6
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,6 @@ dependencies = [
instruments = [
"starlette ~= 0.13.0",
]
test = [
"opentelemetry-instrumentation-starlette[instruments]",
"opentelemetry-test-utils == 0.45b0.dev",
"requests ~= 2.23", # needed for testclient
"httpx ~= 0.22", # needed for testclient
]

[project.entry-points.opentelemetry_instrumentor]
starlette = "opentelemetry.instrumentation.starlette:StarletteInstrumentor"
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
anyio==4.3.0
asgiref==3.7.2
attrs==23.2.0
certifi==2024.2.2
charset-normalizer==3.3.2
Deprecated==1.2.14
exceptiongroup==1.2.0
h11==0.14.0
httpcore==1.0.4
httpx==0.27.0
idna==3.6
importlib-metadata==6.11.0
iniconfig==2.0.0
packaging==23.2
pluggy==1.4.0
py==1.11.0
py-cpuinfo==9.0.0
pytest==7.1.3
pytest-benchmark==4.0.0
requests==2.31.0
sniffio==1.3.0
starlette==0.13.8
tomli==2.0.1
typing_extensions==4.9.0
urllib3==2.2.1
wrapt==1.16.0
zipp==3.17.0
-e opentelemetry-instrumentation
-e instrumentation/opentelemetry-instrumentation-asgi
-e util/opentelemetry-util-http
-e instrumentation/opentelemetry-instrumentation-starlette
8 changes: 4 additions & 4 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -345,8 +345,8 @@ commands_pre =

grpc: pip install {toxinidir}/instrumentation/opentelemetry-instrumentation-grpc[test]

tornado,starlette,fastapi,aiohttp,httpx-{18,21},requests,urllib,urllib3v-{1,2}: pip install {toxinidir}/util/opentelemetry-util-http
starlette,fastapi: pip install {toxinidir}/instrumentation/opentelemetry-instrumentation-asgi
tornado,fastapi,aiohttp,httpx-{18,21},requests,urllib,urllib3v-{1,2}: pip install {toxinidir}/util/opentelemetry-util-http
fastapi: pip install {toxinidir}/instrumentation/opentelemetry-instrumentation-asgi

wsgi: pip install -r {toxinidir}/instrumentation/opentelemetry-instrumentation-wsgi/test-requirements.txt

Expand Down Expand Up @@ -411,7 +411,7 @@ commands_pre =

requests: pip install {toxinidir}/instrumentation/opentelemetry-instrumentation-requests[test]

starlette: pip install {toxinidir}/instrumentation/opentelemetry-instrumentation-starlette[test]
starlette: pip install -r {toxinidir}/instrumentation/opentelemetry-instrumentation-starlette/test-requirements.txt

system-metrics: pip install {toxinidir}/instrumentation/opentelemetry-instrumentation-system-metrics[test]

Expand Down Expand Up @@ -561,7 +561,7 @@ commands_pre =
python -m pip install -e {toxinidir}/instrumentation/opentelemetry-instrumentation-botocore[test]
python -m pip install -e {toxinidir}/instrumentation/opentelemetry-instrumentation-boto3sqs[test]
pip install -r {toxinidir}/instrumentation/opentelemetry-instrumentation-django/test-requirements-3.txt
python -m pip install -e {toxinidir}/instrumentation/opentelemetry-instrumentation-starlette[test]
pip install -r {toxinidir}/instrumentation/opentelemetry-instrumentation-starlette/test-requirements.txt
python -m pip install -e {toxinidir}/instrumentation/opentelemetry-instrumentation-grpc[test]
pip install -r {toxinidir}/instrumentation/opentelemetry-instrumentation-falcon/test-requirements-2.txt
python -m pip install -e {toxinidir}/instrumentation/opentelemetry-instrumentation-boto[test]
Expand Down

0 comments on commit 88de0a6

Please sign in to comment.