Skip to content

Commit

Permalink
Rename web framework packages from "ext" to "instrumentation" (#961)
Browse files Browse the repository at this point in the history
  • Loading branch information
lzchen authored Aug 3, 2020
1 parent 9367a25 commit 76d1cee
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions scripts/coverage.sh
Original file line number Diff line number Diff line change
Expand Up @@ -32,20 +32,20 @@ coverage erase
cov opentelemetry-api
cov opentelemetry-sdk
cov exporter/opentelemetry-exporter-datadog
cov ext/opentelemetry-ext-flask
cov ext/opentelemetry-ext-requests
cov instrumentation/opentelemetry-instrumentation-flask
cov instrumentation/opentelemetry-instrumentation-requests
cov exporter/opentelemetry-exporter-jaeger
cov ext/opentelemetry-ext-opentracing-shim
cov ext/opentelemetry-ext-wsgi
cov instrumentation/opentelemetry-instrumentation-wsgi
cov exporter/opentelemetry-exporter-zipkin
cov docs/examples/opentelemetry-example-app

# aiohttp is only supported on Python 3.5+.
if [ ${PYTHON_VERSION_INFO[1]} -gt 4 ]; then
cov ext/opentelemetry-ext-aiohttp-client
cov instrumentation/opentelemetry-instrumentation-aiohttp-client
# ext-asgi is only supported on Python 3.5+.
if [ ${PYTHON_VERSION_INFO[1]} -gt 4 ]; then
cov ext/opentelemetry-ext-asgi
cov instrumentation/opentelemetry-instrumentation-asgi
fi

coverage report --show-missing
Expand Down

0 comments on commit 76d1cee

Please sign in to comment.