mirror of
https://github.com/open-telemetry/opentelemetry-python-contrib.git
synced 2025-07-26 03:23:11 +08:00
25 lines
510 B
Bash
Executable File
25 lines
510 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
function cov {
|
|
pytest \
|
|
--cov ${1} \
|
|
--cov-append \
|
|
--cov-branch \
|
|
--cov-report='' \
|
|
${1}
|
|
}
|
|
|
|
coverage erase
|
|
|
|
cov instrumentation/opentelemetry-instrumentation-flask
|
|
cov instrumentation/opentelemetry-instrumentation-requests
|
|
cov instrumentation/opentelemetry-instrumentation-wsgi
|
|
cov instrumentation/opentelemetry-instrumentation-aiohttp-client
|
|
cov instrumentation/opentelemetry-instrumentation-asgi
|
|
|
|
|
|
coverage report --show-missing
|
|
coverage xml
|