Skip to content

Commit

Permalink
Remove [test] package from asyncio instrumentation (#2248)
Browse files Browse the repository at this point in the history
Fixes #2188
  • Loading branch information
ocelotl committed Mar 15, 2024
1 parent 1bf9f42 commit 5552db2
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,6 @@ dependencies = [

[project.optional-dependencies]
instruments = []
test = [
"opentelemetry-instrumentation-asyncio[instruments]",
"pytest",
"wrapt >= 1.0.0, < 2.0.0",
"pytest-asyncio",
]

[project.entry-points.opentelemetry_instrumentor]
asyncio = "opentelemetry.instrumentation.asyncio:AsyncioInstrumentor"
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
asgiref==3.7.2
attrs==23.2.0
Deprecated==1.2.14
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-asyncio==0.23.5
pytest-benchmark==4.0.0
tomli==2.0.1
typing_extensions==4.9.0
wrapt==1.16.0
zipp==3.17.0
-e opentelemetry-instrumentation
-e instrumentation/opentelemetry-instrumentation-asyncio
4 changes: 2 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -422,7 +422,7 @@ commands_pre =

elasticsearch-{2,5,6}: pip install {toxinidir}/opentelemetry-instrumentation[test] {toxinidir}/instrumentation/opentelemetry-instrumentation-elasticsearch[test]

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

httpx-{18,21}: pip install {toxinidir}/instrumentation/opentelemetry-instrumentation-httpx[test]

Expand Down Expand Up @@ -586,7 +586,7 @@ commands_pre =
python -m pip install -e {toxinidir}/instrumentation/opentelemetry-instrumentation-httpx[test]
python -m pip install -e {toxinidir}/instrumentation/opentelemetry-instrumentation-aws-lambda[test]
python -m pip install -e {toxinidir}/instrumentation/opentelemetry-instrumentation-system-metrics[test]
python -m pip install -e {toxinidir}/instrumentation/opentelemetry-instrumentation-asyncio[test]
pip install -r {toxinidir}/instrumentation/opentelemetry-instrumentation-asyncio/test-requirements.txt
python -m pip install -e {toxinidir}/exporter/opentelemetry-exporter-richconsole[test]
# requires snappy headers to be available on the system
python -m pip install -e {toxinidir}/sdk-extension/opentelemetry-sdk-extension-aws[test]
Expand Down

0 comments on commit 5552db2

Please sign in to comment.