summaryrefslogtreecommitdiffstats
path: root/run_checks.sh
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2023-01-04 07:24:08 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2023-01-04 07:24:08 +0000
commit7a2201963d5b03bd1828d350ccaecb4eda30d30c (patch)
tree19effbe90b8d78fdcb5f7d4bd0dd46b177ffdaab /run_checks.sh
parentReleasing debian version 10.2.9-1. (diff)
downloadsqlglot-7a2201963d5b03bd1828d350ccaecb4eda30d30c.tar.xz
sqlglot-7a2201963d5b03bd1828d350ccaecb4eda30d30c.zip
Merging upstream version 10.4.2.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'run_checks.sh')
-rwxr-xr-xrun_checks.sh8
1 files changed, 0 insertions, 8 deletions
diff --git a/run_checks.sh b/run_checks.sh
deleted file mode 100755
index 187e6b9..0000000
--- a/run_checks.sh
+++ /dev/null
@@ -1,8 +0,0 @@
-#!/bin/bash -e
-[[ -z "${GITHUB_ACTIONS}" ]] && RETURN_ERROR_CODE='' || RETURN_ERROR_CODE='--check'
-TARGETS="sqlglot/ tests/"
-python -m mypy $TARGETS
-python -m autoflake -i -r ${RETURN_ERROR_CODE} $TARGETS
-python -m isort $TARGETS
-python -m black --line-length 100 ${RETURN_ERROR_CODE} $TARGETS
-python -m unittest