Remove [test] package from aiohttp-client instrumentation (#2238)
Fixes #2183
This commit is contained in:
parent
8d43618798
commit
17de1d5765
|
|
@ -35,10 +35,6 @@ dependencies = [
|
|||
instruments = [
|
||||
"aiohttp ~= 3.0",
|
||||
]
|
||||
test = [
|
||||
"opentelemetry-instrumentation-aiohttp-client[instruments]",
|
||||
"http-server-mock"
|
||||
]
|
||||
|
||||
[project.entry-points.opentelemetry_instrumentor]
|
||||
aiohttp-client = "opentelemetry.instrumentation.aiohttp_client:AioHttpClientInstrumentor"
|
||||
|
|
|
|||
|
|
@ -0,0 +1,37 @@
|
|||
aiohttp==3.9.3
|
||||
aiosignal==1.3.1
|
||||
asgiref==3.7.2
|
||||
async-timeout==4.0.3
|
||||
attrs==23.2.0
|
||||
blinker==1.7.0
|
||||
certifi==2024.2.2
|
||||
charset-normalizer==3.3.2
|
||||
click==8.1.7
|
||||
Deprecated==1.2.14
|
||||
Flask==3.0.2
|
||||
frozenlist==1.4.1
|
||||
http_server_mock==1.7
|
||||
idna==3.6
|
||||
importlib-metadata==6.11.0
|
||||
iniconfig==2.0.0
|
||||
itsdangerous==2.1.2
|
||||
Jinja2==3.1.3
|
||||
MarkupSafe==2.1.5
|
||||
multidict==6.0.5
|
||||
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
|
||||
tomli==2.0.1
|
||||
typing_extensions==4.10.0
|
||||
urllib3==2.2.1
|
||||
Werkzeug==3.0.1
|
||||
wrapt==1.16.0
|
||||
yarl==1.9.4
|
||||
zipp==3.17.0
|
||||
-e opentelemetry-instrumentation
|
||||
-e util/opentelemetry-util-http
|
||||
-e instrumentation/opentelemetry-instrumentation-aiohttp-client
|
||||
8
tox.ini
8
tox.ini
|
|
@ -345,7 +345,7 @@ commands_pre =
|
|||
|
||||
grpc: pip install {toxinidir}/instrumentation/opentelemetry-instrumentation-grpc[test]
|
||||
|
||||
aiohttp,httpx-{18,21},requests,urllib,urllib3v-{1,2}: pip install {toxinidir}/util/opentelemetry-util-http
|
||||
aiohttp-server,httpx-{18,21},requests,urllib,urllib3v-{1,2}: pip install {toxinidir}/util/opentelemetry-util-http
|
||||
|
||||
wsgi: pip install -r {toxinidir}/instrumentation/opentelemetry-instrumentation-wsgi/test-requirements.txt
|
||||
|
||||
|
|
@ -422,7 +422,9 @@ commands_pre =
|
|||
|
||||
logging: pip install {toxinidir}/instrumentation/opentelemetry-instrumentation-logging[test]
|
||||
|
||||
aiohttp-client: pip install {toxinidir}/instrumentation/opentelemetry-instrumentation-aiohttp-client[test]
|
||||
aio-pika-{8,9}: pip install {toxinidir}/instrumentation/opentelemetry-instrumentation-aio-pika[test]
|
||||
|
||||
aiohttp-client: pip install -r {toxinidir}/instrumentation/opentelemetry-instrumentation-aiohttp-client/test-requirements.txt
|
||||
|
||||
aiohttp-server: pip install {toxinidir}/instrumentation/opentelemetry-instrumentation-aiohttp-server[test]
|
||||
|
||||
|
|
@ -581,7 +583,7 @@ commands_pre =
|
|||
python -m pip install -e {toxinidir}/instrumentation/opentelemetry-instrumentation-pymemcache[test]
|
||||
python -m pip install -e {toxinidir}/instrumentation/opentelemetry-instrumentation-psycopg[test]
|
||||
python -m pip install -e {toxinidir}/instrumentation/opentelemetry-instrumentation-psycopg2[test]
|
||||
python -m pip install -e {toxinidir}/instrumentation/opentelemetry-instrumentation-aiohttp-client[test]
|
||||
pip install -r {toxinidir}/instrumentation/opentelemetry-instrumentation-aiohttp-client/test-requirements.txt
|
||||
python -m pip install -e {toxinidir}/instrumentation/opentelemetry-instrumentation-aiohttp-server[test]
|
||||
pip install -r {toxinidir}/instrumentation/opentelemetry-instrumentation-aiopg/test-requirements.txt
|
||||
python -m pip install -e {toxinidir}/instrumentation/opentelemetry-instrumentation-sqlite3[test]
|
||||
|
|
|
|||
Loading…
Reference in New Issue