From 8411acbe236ff029f9d2e4433f51b47399cd9116 Mon Sep 17 00:00:00 2001 From: Jack Ward Date: Fri, 9 Feb 2024 10:14:26 -0600 Subject: [PATCH] Removed lint-tests --- lint-tests.sh | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100755 lint-tests.sh diff --git a/lint-tests.sh b/lint-tests.sh deleted file mode 100755 index cd910192f..000000000 --- a/lint-tests.sh +++ /dev/null @@ -1,26 +0,0 @@ -#!/bin/bash - -# Locally runs the same commands that the Github Action does. -# Run this script before pushing to avoid Github Push issues. - -RED="\e[31m" -GREEN="\e[32m" -BLUE="\e[34m" -ENDCOLOR="\e[0m" - -# Run Black -echo -e "${GREEN}Running Black${ENDCOLOR}" -black . -echo \ - -# Run Flake8 -echo -e "${GREEN}Running Flake8${ENDCOLOR}" -flake8 --select F,E722 --ignore F403,F405,F541 --per-file-ignores="*/__init__.py:F401,F403" -echo -e "${BLUE}All Done!${ENDCOLOR}" - -echo \ - -# Show Changes -echo -e "${GREEN}Showing Changes Made from Black & Flake8 (using git status)${ENDCOLOR}" -git status -echo \