blob: 647aba9540f8950d8277e2bf87b30f34ee38a4d9 [file] [log] [blame]
#!/usr/bin/env bash
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
set -euo pipefail
INPLACE_FORMAT=${INPLACE_FORMAT:=false}
LINT_ALL_FILES=true
REVISION=
while (( $# )); do
case "$1" in
-i)
INPLACE_FORMAT=true
shift 1
;;
--rev)
LINT_ALL_FILES=false
REVISION=$2
shift 2
;;
*)
echo "Usage: tests/lint/git-black.sh [-i] [--rev <commit>]"
echo ""
echo "Run black on Python files that changed since <commit> or on all files in the repo"
echo "Examples:"
echo "- Compare last one commit: tests/lint/git-black.sh --rev HEAD~1"
echo "- Compare against upstream/main: tests/lint/git-black.sh --rev upstream/main"
echo "The -i will use black to format files in-place instead of checking them."
exit 1
;;
esac
done
# required to make black's dep click to work
export LC_ALL=C.UTF-8
export LANG=C.UTF-8
if [ ! -x "$(command -v black)" ]; then
echo "Cannot find black"
exit 1
fi
# Print out specific version
VERSION=$(black --version)
echo "black version: $VERSION"
# Compute Python files which changed to compare.
if [[ "$LINT_ALL_FILES" == "true" ]]; then
FILES=$(git ls-files | grep -E '\.py$')
echo "checking all files"
else
IFS=$'\n' read -a FILES -d'\n' < <(git diff --name-only --diff-filter=ACMRTUX $REVISION -- "*.py" "*.pyi") || true
echo "Read returned $?"
if [ -z ${FILES+x} ]; then
echo "No changes in Python files"
exit 0
fi
echo "Files: $FILES"
fi
if [[ "$INPLACE_FORMAT" == "true" ]]; then
echo "Running black on Python files against revision" $REVISION:
python3 -m black ${FILES[@]}
else
echo "Running black in checking mode"
python3 -m black --diff --check ${FILES[@]}
fi