Skip to content

Commit 7b7d863

Browse files
committed
Remove [test] package from boto3sqs instrumentation
Fixes open-telemetry#2192
1 parent 565e78d commit 7b7d863

File tree

3 files changed

+26
-6
lines changed

3 files changed

+26
-6
lines changed

instrumentation/opentelemetry-instrumentation-boto3sqs/pyproject.toml

-4
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,6 @@ dependencies = [
3434
instruments = [
3535
"boto3 ~= 1.0",
3636
]
37-
test = [
38-
"opentelemetry-instrumentation-boto3sqs[instruments]",
39-
"opentelemetry-test-utils == 0.45b0.dev",
40-
]
4137

4238
[project.entry-points.opentelemetry_instrumentor]
4339
boto3 = "opentelemetry.instrumentation.boto3sqs:Boto3SQSInstrumentor"
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
asgiref==3.7.2
2+
attrs==23.2.0
3+
boto3==1.34.44
4+
botocore==1.34.44
5+
Deprecated==1.2.14
6+
importlib-metadata==6.11.0
7+
iniconfig==2.0.0
8+
jmespath==1.0.1
9+
packaging==23.2
10+
pluggy==1.4.0
11+
py==1.11.0
12+
py-cpuinfo==9.0.0
13+
pytest==7.1.3
14+
pytest-benchmark==4.0.0
15+
python-dateutil==2.8.2
16+
s3transfer==0.10.0
17+
six==1.16.0
18+
tomli==2.0.1
19+
typing_extensions==4.9.0
20+
urllib3==1.26.18
21+
wrapt==1.16.0
22+
zipp==3.17.0
23+
-e opentelemetry-instrumentation
24+
-e instrumentation/opentelemetry-instrumentation-boto3sqs

tox.ini

+2-2
Original file line numberDiff line numberDiff line change
@@ -344,7 +344,7 @@ commands_pre =
344344
boto: pip install {toxinidir}/instrumentation/opentelemetry-instrumentation-botocore[test]
345345
boto: pip install {toxinidir}/instrumentation/opentelemetry-instrumentation-boto[test]
346346

347-
boto3sqs: pip install {toxinidir}/instrumentation/opentelemetry-instrumentation-boto3sqs[test]
347+
boto3sqs: pip install -r {toxinidir}/instrumentation/opentelemetry-instrumentation-boto3sqs/test-requirements.txt
348348

349349
falcon-{1,2,3}: pip install {toxinidir}/instrumentation/opentelemetry-instrumentation-falcon[test]
350350

@@ -538,7 +538,7 @@ commands_pre =
538538
python -m pip install -e {toxinidir}/instrumentation/opentelemetry-instrumentation-dbapi[test]
539539
python -m pip install -e {toxinidir}/instrumentation/opentelemetry-instrumentation-asgi[test]
540540
python -m pip install -e {toxinidir}/instrumentation/opentelemetry-instrumentation-botocore[test]
541-
python -m pip install -e {toxinidir}/instrumentation/opentelemetry-instrumentation-boto3sqs[test]
541+
pip install -r {toxinidir}/instrumentation/opentelemetry-instrumentation-boto3sqs/test-requirements.txt
542542
python -m pip install -e {toxinidir}/instrumentation/opentelemetry-instrumentation-django[test]
543543
python -m pip install -e {toxinidir}/instrumentation/opentelemetry-instrumentation-starlette[test]
544544
python -m pip install -e {toxinidir}/instrumentation/opentelemetry-instrumentation-grpc[test]

0 commit comments

Comments
 (0)