Skip to content

Commit

Permalink
Merge branch 'main' into pytyped
Browse files Browse the repository at this point in the history
  • Loading branch information
ocelotl committed Mar 20, 2024
2 parents 939cdc0 + 6dd85fc commit 5a921b9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
4 changes: 2 additions & 2 deletions scripts/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ set -ev
# Get the latest versions of packaging tools
python3 -m pip install --upgrade pip build setuptools wheel

BASEDIR=$(dirname $(readlink -f $(dirname $0)))
BASEDIR=$(dirname "$(readlink -f "$(dirname $0)")")
DISTDIR=dist

(
cd $BASEDIR
mkdir -p $DISTDIR
rm -rf $DISTDIR/*
rm -rf ${DISTDIR:?}/*

for d in opentelemetry-api/ opentelemetry-sdk/ opentelemetry-proto/ opentelemetry-semantic-conventions/ exporter/*/ shim/opentelemetry-opentracing-shim/ propagator/*/ tests/opentelemetry-test-utils/; do
(
Expand Down
3 changes: 0 additions & 3 deletions scripts/coverage.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,6 @@ function cov {
fi
}

PYTHON_VERSION=$(python -c 'import sys; print(".".join(map(str, sys.version_info[:3])))')
PYTHON_VERSION_INFO=(${PYTHON_VERSION//./ })

coverage erase

cov opentelemetry-api
Expand Down

0 comments on commit 5a921b9

Please sign in to comment.