Skip to content

Commit d724d9d

Browse files
authored
Merge branch 'main' into bump-mypy
2 parents 4db1035 + 6dd85fc commit d724d9d

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

docs/examples/logs/README.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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:

scripts/build.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ set -ev
88
# Get the latest versions of packaging tools
99
python3 -m pip install --upgrade pip build setuptools wheel
1010

11-
BASEDIR=$(dirname $(readlink -f $(dirname $0)))
11+
BASEDIR=$(dirname "$(readlink -f "$(dirname $0)")")
1212
DISTDIR=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
(

scripts/coverage.sh

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff 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-
2825
coverage erase
2926

3027
cov opentelemetry-api

0 commit comments

Comments
 (0)