1
0
Fork 0
sqlglot/run_checks.sh
Daniel Baumann 527597d2af
Adding upstream version 6.0.4.
Signed-off-by: Daniel Baumann <daniel@debian.org>
2025-02-13 06:15:54 +01:00

12 lines
310 B
Bash
Executable file

#!/bin/bash -e
python -m autoflake -i -r \
--expand-star-imports \
--remove-all-unused-imports \
--ignore-init-module-imports \
--remove-duplicate-keys \
--remove-unused-variables \
sqlglot/ tests/
python -m isort --profile black sqlglot/ tests/
python -m black sqlglot/ tests/
python -m unittest