Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# these are required for weaver integration tests, we're running that only on linux / CPython
# because of lack of support for gRPC on Windows in some cases.
opentelemetry-proto ; sys_platform != 'win32' and platform_python_implementation != 'PyPy'
opentelemetry-exporter-otlp-proto-common ; sys_platform != 'win32' and platform_python_implementation != 'PyPy'
opentelemetry-exporter-otlp-proto-grpc ; sys_platform != 'win32' and platform_python_implementation != 'PyPy'
7 changes: 3 additions & 4 deletions tests/opentelemetry-test-utils/test-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ zipp==3.19.2
-e tests/opentelemetry-test-utils
# these are required for weaver integration tests, we're running that only on linux / CPython
# because of lack of support for gRPC on Windows in some cases.
# note: tox does not support PEP 508 markers on `-e` editable installs, so these are installed non-editable
./opentelemetry-proto ; sys_platform != 'win32' and platform_python_implementation != 'PyPy'
./exporter/opentelemetry-exporter-otlp-proto-common ; sys_platform != 'win32' and platform_python_implementation != 'PyPy'
./exporter/opentelemetry-exporter-otlp-proto-grpc ; sys_platform != 'win32' and platform_python_implementation != 'PyPy'
-e opentelemetry-proto
-e exporter/opentelemetry-exporter-otlp-proto-common
-e exporter/opentelemetry-exporter-otlp-proto-grpc
1 change: 1 addition & 0 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,7 @@ deps =

semantic-conventions: -r {toxinidir}/opentelemetry-semantic-conventions/test-requirements.txt

test-utils: -c {toxinidir}/tests/opentelemetry-test-utils/test-requirements-constraints.txt
test-utils: -r {toxinidir}/tests/opentelemetry-test-utils/test-requirements.txt

opentelemetry-proto-gen-oldest: -r {toxinidir}/opentelemetry-proto/test-requirements.oldest.txt
Expand Down
Loading