Ask `ruff` to autofix Python lint errors, where possible (#5903)

Co-authored-by: Amaury Chamayou <amchamay@microsoft.com>
This commit is contained in:
Eddy Ashton 2024-01-10 11:21:18 +00:00 коммит произвёл GitHub
Родитель 6a2cb50358
Коммит 11c2737df3
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 7 добавлений и 1 удалений

Просмотреть файл

@ -21,6 +21,8 @@ function group(){
# https://docs.github.com/en/actions/learn-github-actions/environment-variables#default-environment-variables
if [[ ${CI} ]]; then
echo "::group::$1"
else
echo "-=[ $1 ]=-"
fi
}
function endgroup() {
@ -119,7 +121,11 @@ pip install -U -r python/requirements.txt 1>/dev/null
endgroup
group "Python lint"
ruff check python/ tests/
if [ $FIX -ne 0 ]; then
ruff check --fix python/ tests/
else
ruff check python/ tests/
fi
endgroup
group "Python types"