Skip to content

Commit 2fa0b4d

Browse files
committed
fix: test library
1 parent b0fe5a2 commit 2fa0b4d

File tree

4 files changed

+22
-7
lines changed

4 files changed

+22
-7
lines changed

Diff for: instrumentation/opentelemetry-instrumentation-threading/pyproject.toml

+1-4
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,12 @@ classifiers = [
2525
]
2626
dependencies = [
2727
"opentelemetry-api ~= 1.12",
28-
"opentelemetry-instrumentation == 0.45b0.dev",
28+
"opentelemetry-instrumentation == 0.46b0.dev",
2929
"wrapt >= 1.0.0, < 2.0.0",
3030
]
3131

3232
[project.optional-dependencies]
3333
instruments = []
34-
test = [
35-
"opentelemetry-test-utils == 0.45b0.dev",
36-
]
3734

3835
[project.entry-points.opentelemetry_instrumentor]
3936
threading = "opentelemetry.instrumentation.threading:ThreadingInstrumentor"

Diff for: instrumentation/opentelemetry-instrumentation-threading/src/opentelemetry/instrumentation/threading/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
__version__ = "0.45b0.dev"
15+
__version__ = "0.46b0.dev"
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
asgiref==3.7.2
2+
attrs==23.2.0
3+
confluent-kafka==2.3.0
4+
Deprecated==1.2.14
5+
importlib-metadata==6.11.0
6+
iniconfig==2.0.0
7+
packaging==23.2
8+
pluggy==1.4.0
9+
py==1.11.0
10+
py-cpuinfo==9.0.0
11+
pytest==7.1.3
12+
pytest-benchmark==4.0.0
13+
tomli==2.0.1
14+
typing_extensions==4.9.0
15+
wrapt==1.16.0
16+
zipp==3.17.0
17+
-e opentelemetry-instrumentation
18+
-e instrumentation/opentelemetry-instrumentation-threading

Diff for: tox.ini

+2-2
Original file line numberDiff line numberDiff line change
@@ -425,7 +425,7 @@ commands_pre =
425425

426426
system-metrics: pip install -r {toxinidir}/instrumentation/opentelemetry-instrumentation-system-metrics/test-requirements.txt
427427

428-
threading: pip install {toxinidir}/instrumentation/opentelemetry-instrumentation-threading[test]
428+
threading: pip install -r {toxinidir}/instrumentation/opentelemetry-instrumentation-threading/test-requirements.txt
429429

430430
tornado: pip install -r {toxinidir}/instrumentation/opentelemetry-instrumentation-tornado/test-requirements.txt
431431

@@ -614,7 +614,6 @@ commands_pre =
614614
pip install -r {toxinidir}/instrumentation/opentelemetry-instrumentation-confluent-kafka/test-requirements.txt
615615
pip install -r {toxinidir}/instrumentation/opentelemetry-instrumentation-pika/test-requirements-1.txt
616616
pip install -r {toxinidir}/instrumentation/opentelemetry-instrumentation-pymysql/test-requirements.txt
617-
python -m pip install -e {toxinidir}/instrumentation/opentelemetry-instrumentation-pymysql[test]
618617
# prerequisite: follow the instructions here https://github.com/PyMySQL/mysqlclient#install
619618
# for your OS to install the required dependencies
620619
pip install -r {toxinidir}/instrumentation/opentelemetry-instrumentation-mysqlclient/test-requirements.txt
@@ -628,6 +627,7 @@ commands_pre =
628627
pip install -r {toxinidir}/instrumentation/opentelemetry-instrumentation-asyncio/test-requirements.txt
629628
pip install -r {toxinidir}/exporter/opentelemetry-exporter-richconsole/test-requirements.txt
630629
pip install -r {toxinidir}/instrumentation/opentelemetry-instrumentation-system-metrics/test-requirements.txt
630+
pip install -r {toxinidir}/instrumentation/opentelemetry-instrumentation-threading/test-requirements.txt
631631
pip install -r {toxinidir}/instrumentation/opentelemetry-instrumentation-tortoiseorm/test-requirements.txt
632632
# requires snappy headers to be available on the system
633633
pip install -r {toxinidir}/resource/opentelemetry-resource-detector-container/test-requirements.txt

0 commit comments

Comments
 (0)