From 5efc86bbccad410cfd340a3c08387f3a7e3c2909 Mon Sep 17 00:00:00 2001 From: Chris Hill-Scott Date: Mon, 12 Feb 2018 10:26:55 +0000 Subject: [PATCH] Remove flag from flake8 command This flag was only needed because of a bug in flake8. This bug is fixed now. --- scripts/run_tests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/run_tests.sh b/scripts/run_tests.sh index 2b5da0565..d8d6b5a39 100755 --- a/scripts/run_tests.sh +++ b/scripts/run_tests.sh @@ -28,7 +28,7 @@ if [[ -z "$VIRTUAL_ENV" ]] && [[ -d venv ]]; then source ./venv/bin/activate fi -flake8 --enable=T . +flake8 . display_result $? 1 "Code style check" npm test