File tree Expand file tree Collapse file tree 3 files changed +3
-5
lines changed Expand file tree Collapse file tree 3 files changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -21,6 +21,7 @@ Start the Collector locally to see data being exported. Write the following file
2121
2222 exporters :
2323 logging :
24+ verbosity : detailed
2425
2526 service :
2627 pipelines :
Original file line number Diff line number Diff line change @@ -8,13 +8,13 @@ set -ev
88# Get the latest versions of packaging tools
99python3 -m pip install --upgrade pip build setuptools wheel
1010
11- BASEDIR=$( dirname $( readlink -f $( dirname $0 ) ) )
11+ BASEDIR=$( dirname " $( readlink -f " $( dirname $0 ) " ) " )
1212DISTDIR=dist
1313
1414(
1515 cd $BASEDIR
1616 mkdir -p $DISTDIR
17- rm -rf $DISTDIR /*
17+ rm -rf ${ DISTDIR:? } /*
1818
1919 for d in opentelemetry-api/ opentelemetry-sdk/ opentelemetry-proto/ opentelemetry-semantic-conventions/ exporter/* / shim/opentelemetry-opentracing-shim/ propagator/* / tests/opentelemetry-test-utils/; do
2020 (
Original file line number Diff line number Diff line change @@ -22,9 +22,6 @@ function cov {
2222 fi
2323}
2424
25- PYTHON_VERSION=$( python -c ' import sys; print(".".join(map(str, sys.version_info[:3])))' )
26- PYTHON_VERSION_INFO=(${PYTHON_VERSION// ./ } )
27-
2825coverage erase
2926
3027cov opentelemetry-api
You can’t perform that action at this time.
0 commit comments