mirror of
https://github.com/open-telemetry/opentelemetry-python-contrib.git
synced 2025-07-29 21:23:55 +08:00
@ -36,10 +36,6 @@ dependencies = [
|
||||
instruments = [
|
||||
"falcon >= 1.4.1, < 3.1.2",
|
||||
]
|
||||
test = [
|
||||
"opentelemetry-instrumentation-falcon[instruments]",
|
||||
"opentelemetry-test-utils == 0.45b0.dev",
|
||||
]
|
||||
|
||||
[project.entry-points.opentelemetry_instrumentor]
|
||||
falcon = "opentelemetry.instrumentation.falcon:FalconInstrumentor"
|
||||
|
@ -0,0 +1,22 @@
|
||||
asgiref==3.7.2
|
||||
attrs==23.2.0
|
||||
Deprecated==1.2.14
|
||||
falcon==1.4.1
|
||||
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
|
||||
python-mimeparse==1.6.0
|
||||
six==1.16.0
|
||||
tomli==2.0.1
|
||||
typing_extensions==4.10.0
|
||||
wrapt==1.16.0
|
||||
zipp==3.17.0
|
||||
-e opentelemetry-instrumentation
|
||||
-e instrumentation/opentelemetry-instrumentation-wsgi
|
||||
-e util/opentelemetry-util-http
|
||||
-e instrumentation/opentelemetry-instrumentation-falcon
|
@ -0,0 +1,20 @@
|
||||
asgiref==3.7.2
|
||||
attrs==23.2.0
|
||||
Deprecated==1.2.14
|
||||
falcon==2.0.0
|
||||
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
|
||||
tomli==2.0.1
|
||||
typing_extensions==4.10.0
|
||||
wrapt==1.16.0
|
||||
zipp==3.17.0
|
||||
-e opentelemetry-instrumentation
|
||||
-e instrumentation/opentelemetry-instrumentation-wsgi
|
||||
-e util/opentelemetry-util-http
|
||||
-e instrumentation/opentelemetry-instrumentation-falcon
|
@ -0,0 +1,20 @@
|
||||
asgiref==3.7.2
|
||||
attrs==23.2.0
|
||||
Deprecated==1.2.14
|
||||
falcon==3.1.1
|
||||
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
|
||||
tomli==2.0.1
|
||||
typing_extensions==4.10.0
|
||||
wrapt==1.16.0
|
||||
zipp==3.17.0
|
||||
-e opentelemetry-instrumentation
|
||||
-e instrumentation/opentelemetry-instrumentation-wsgi
|
||||
-e util/opentelemetry-util-http
|
||||
-e instrumentation/opentelemetry-instrumentation-falcon
|
24
tox.ini
24
tox.ini
@ -82,9 +82,14 @@ envlist =
|
||||
|
||||
; opentelemetry-instrumentation-falcon
|
||||
; py310 does not work with falcon 1
|
||||
py3{8,9}-test-instrumentation-falcon-1
|
||||
py3{8,9,10,11}-test-instrumentation-falcon-{2,3}
|
||||
pypy3-test-instrumentation-falcon-{1,2,3}
|
||||
; The numbers at the end of the environment names
|
||||
; below mean these dependencies are being used:
|
||||
; 0: falcon ==1.4.1
|
||||
; 1: falcon >=2.0.0,<3.0.0
|
||||
; 2: falcon >=3.0.0,<4.0.0
|
||||
py3{8,9}-test-instrumentation-falcon-0
|
||||
py3{8,9,10,11}-test-instrumentation-falcon-{1,2}
|
||||
pypy3-test-instrumentation-falcon-{0,1,2}
|
||||
|
||||
; opentelemetry-instrumentation-fastapi
|
||||
py3{8,9,10,11}-test-instrumentation-fastapi
|
||||
@ -284,9 +289,6 @@ deps =
|
||||
; elasticsearch-7: elasticsearch>=7.0,<8.0
|
||||
; elasticsearch-8: elasticsearch-dsl>=8.0,<9.0
|
||||
; elasticsearch-8: elasticsearch>=8.0,<9.0
|
||||
falcon-1: falcon ==1.4.1
|
||||
falcon-2: falcon >=2.0.0,<3.0.0
|
||||
falcon-3: falcon >=3.0.0,<4.0.0
|
||||
grpc: pytest-asyncio
|
||||
sqlalchemy-11: sqlalchemy>=1.1,<1.2
|
||||
sqlalchemy-14: aiosqlite
|
||||
@ -343,8 +345,8 @@ commands_pre =
|
||||
|
||||
grpc: pip install {toxinidir}/instrumentation/opentelemetry-instrumentation-grpc[test]
|
||||
|
||||
falcon-{1,2,3},pyramid,tornado,starlette,fastapi,aiohttp,httpx-{18,21},requests,urllib,urllib3v-{1,2},wsgi: pip install {toxinidir}/util/opentelemetry-util-http
|
||||
wsgi,falcon-{1,2,3},pyramid: pip install {toxinidir}/instrumentation/opentelemetry-instrumentation-wsgi[test]
|
||||
pyramid,tornado,starlette,fastapi,aiohttp,httpx-{18,21},requests,urllib,urllib3v-{1,2},wsgi: pip install {toxinidir}/util/opentelemetry-util-http
|
||||
wsgi,pyramid: pip install {toxinidir}/instrumentation/opentelemetry-instrumentation-wsgi[test]
|
||||
starlette,fastapi: pip install {toxinidir}/instrumentation/opentelemetry-instrumentation-asgi
|
||||
|
||||
asyncpg: pip install {toxinidir}/instrumentation/opentelemetry-instrumentation-asyncpg[test]
|
||||
@ -356,7 +358,9 @@ commands_pre =
|
||||
|
||||
boto3sqs: pip install {toxinidir}/instrumentation/opentelemetry-instrumentation-boto3sqs[test]
|
||||
|
||||
falcon-{1,2,3}: pip install {toxinidir}/instrumentation/opentelemetry-instrumentation-falcon[test]
|
||||
falcon-0: pip install -r {toxinidir}/instrumentation/opentelemetry-instrumentation-falcon/test-requirements-0.txt
|
||||
falcon-1: pip install -r {toxinidir}/instrumentation/opentelemetry-instrumentation-falcon/test-requirements-1.txt
|
||||
falcon-2: pip install -r {toxinidir}/instrumentation/opentelemetry-instrumentation-falcon/test-requirements-2.txt
|
||||
|
||||
flask-0: pip install -r {toxinidir}/instrumentation/opentelemetry-instrumentation-flask/test-requirements-0.txt
|
||||
flask-1: pip install -r {toxinidir}/instrumentation/opentelemetry-instrumentation-flask/test-requirements-1.txt
|
||||
@ -558,7 +562,7 @@ commands_pre =
|
||||
pip install -r {toxinidir}/instrumentation/opentelemetry-instrumentation-django/test-requirements-3.txt
|
||||
python -m pip install -e {toxinidir}/instrumentation/opentelemetry-instrumentation-starlette[test]
|
||||
python -m pip install -e {toxinidir}/instrumentation/opentelemetry-instrumentation-grpc[test]
|
||||
python -m pip install -e {toxinidir}/instrumentation/opentelemetry-instrumentation-falcon[test]
|
||||
pip install -r {toxinidir}/instrumentation/opentelemetry-instrumentation-falcon/test-requirements-2.txt
|
||||
python -m pip install -e {toxinidir}/instrumentation/opentelemetry-instrumentation-boto[test]
|
||||
pip install -r {toxinidir}/instrumentation/opentelemetry-instrumentation-flask/test-requirements-2.txt
|
||||
python -m pip install -e {toxinidir}/instrumentation/opentelemetry-instrumentation-sqlalchemy[test]
|
||||
|
Reference in New Issue
Block a user