From 4058a9f45fd902d2da6b4d7ae6686ab1f70e97b3 Mon Sep 17 00:00:00 2001 From: pyup-bot Date: Sun, 11 Feb 2018 16:39:14 +0000 Subject: [PATCH 1/2] Update flake8-print from 3.0.1 to 3.1.0 --- requirements_for_test.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements_for_test.txt b/requirements_for_test.txt index 6f5d1bc45..f4ba9ba05 100644 --- a/requirements_for_test.txt +++ b/requirements_for_test.txt @@ -8,4 +8,4 @@ httpretty==0.8.14 beautifulsoup4==4.6.0 freezegun==0.3.9 flake8==3.5.0 -flake8-print==3.0.1 +flake8-print==3.1.0 From 5efc86bbccad410cfd340a3c08387f3a7e3c2909 Mon Sep 17 00:00:00 2001 From: Chris Hill-Scott Date: Mon, 12 Feb 2018 10:26:55 +0000 Subject: [PATCH 2/2] 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