mirror of
https://github.com/open-telemetry/opentelemetry-python-contrib.git
synced 2025-07-27 04:03:09 +08:00

- Creates a tree structure for documentation, it allows to organize it better from a developer point of view and also the rendered documentation should be easier to navigate. - Moves partially the main readme to be included in the online docs, the main readme will be updated to have a link to avoid duplicated content) - Moves the examples folder to the docs, so they can be accessed through the online documentation. Creates a new pair of "macros" to create links to specific versions, scm_web & scm_raw_web. Co-authored-by: Chris Kleinknecht <libc@google.com>
30 lines
540 B
Bash
Executable File
30 lines
540 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
function cov {
|
|
pytest \
|
|
--ignore-glob=*/setup.py \
|
|
--cov ${1} \
|
|
--cov-append \
|
|
--cov-branch \
|
|
--cov-report='' \
|
|
${1}
|
|
}
|
|
|
|
|
|
coverage erase
|
|
|
|
cov opentelemetry-api
|
|
cov opentelemetry-sdk
|
|
cov ext/opentelemetry-ext-flask
|
|
cov ext/opentelemetry-ext-http-requests
|
|
cov ext/opentelemetry-ext-jaeger
|
|
cov ext/opentelemetry-ext-opentracing-shim
|
|
cov ext/opentelemetry-ext-wsgi
|
|
cov ext/opentelemetry-ext-zipkin
|
|
cov docs/examples/opentelemetry-example-app
|
|
|
|
coverage report
|
|
coverage xml
|