1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Disable opentelemetry installation for unit tests. (#4871)

This commit is contained in:
Felix Fontein 2022-06-21 21:39:00 +02:00 committed by GitHub
parent 297de3011c
commit 1eee35dffb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -29,10 +29,11 @@ dnsimple >= 2 ; python_version >= '3.6'
dataclasses ; python_version == '3.6' dataclasses ; python_version == '3.6'
# requirement for the opentelemetry callback plugin # requirement for the opentelemetry callback plugin
# WARNING: these libraries depend on grpcio, which takes 7 minutes (!) to build in CI on Python 3.10 # WARNING: these libraries rely on Protobuf for Python, which regularly stops installing.
opentelemetry-api ; python_version >= '3.6' and python_version < '3.10' # That's why they are disabled for now.
opentelemetry-exporter-otlp ; python_version >= '3.6' and python_version < '3.10' # opentelemetry-api ; python_version >= '3.6' and python_version < '3.10'
opentelemetry-sdk ; python_version >= '3.6' and python_version < '3.10' # opentelemetry-exporter-otlp ; python_version >= '3.6' and python_version < '3.10'
# opentelemetry-sdk ; python_version >= '3.6' and python_version < '3.10'
# requirement for the elastic callback plugin # requirement for the elastic callback plugin
elastic-apm ; python_version >= '3.6' elastic-apm ; python_version >= '3.6'