set -x # Show which command is being run12# Step 1: pre-install required packages3if [[ ${sync_args} == *"full"* || ${sync_args} == *"mapping"* ]]; then4case ${RUNNER_OS} in5linux|Linux)6sudo apt-get -qqy update7sudo apt-get -qqy install libfuse28;;9osx|macOS)10sudo mkdir -p /usr/local/man11sudo chown -R "${USER}:admin" /usr/local/man12HOMEBREW_NO_AUTO_UPDATE=1 brew install macfuse13;;14esac15fi1617# Step 2: install deps and yt18# installing in editable mode so this script may be used locally by developers19# but the primary intention is to embed this script in CI jobs20uv sync --extra=test ${sync_args}2122# Disable excessive output23uv run --no-sync yt config set --local yt log_level 5024cat yt.toml2526set +x272829