Adding upstream version 6.2.6.
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
8425a9678d
commit
d62bab68ae
49 changed files with 1741 additions and 566 deletions
|
@ -1,6 +1,8 @@
|
|||
#!/bin/bash -e
|
||||
|
||||
python -m autoflake -i -r \
|
||||
[[ -z "${GITHUB_ACTIONS}" ]] && RETURN_ERROR_CODE='' || RETURN_ERROR_CODE='--check'
|
||||
|
||||
python -m autoflake -i -r ${RETURN_ERROR_CODE} \
|
||||
--expand-star-imports \
|
||||
--remove-all-unused-imports \
|
||||
--ignore-init-module-imports \
|
||||
|
@ -8,5 +10,5 @@ python -m autoflake -i -r \
|
|||
--remove-unused-variables \
|
||||
sqlglot/ tests/
|
||||
python -m isort --profile black sqlglot/ tests/
|
||||
python -m black --line-length 120 sqlglot/ tests/
|
||||
python -m black ${RETURN_ERROR_CODE} --line-length 120 sqlglot/ tests/
|
||||
python -m unittest
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue