From 7a8b054a1284892b57be2d45b61c2a4031928084 Mon Sep 17 00:00:00 2001 From: zamiramir <40475662+zamiramir@users.noreply.github.com> Date: Wed, 15 May 2019 16:29:36 +0200 Subject: [PATCH] :art: Reenable Black --check for Python 3.7 (#229) Reenabled Black --check for python 3.7, issue is fixed. see https://github.com/ambv/black/issues/494 --- scripts/test.sh | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/scripts/test.sh b/scripts/test.sh index e2e6d94c9..c94787cc1 100755 --- a/scripts/test.sh +++ b/scripts/test.sh @@ -14,9 +14,5 @@ fi export PYTHONPATH=./docs/src pytest --cov=fastapi --cov=tests --cov=docs/src --cov-report=term-missing ${@} mypy fastapi --disallow-untyped-defs --follow-imports=skip -if [ "${PYTHON_VERSION}" = '3.7' ]; then - echo "Skipping 'black' on 3.7. See issue https://github.com/ambv/black/issues/494" -else - black fastapi tests --check -fi +black fastapi tests --check isort --multi-line=3 --trailing-comma --force-grid-wrap=0 --combine-as --line-width 88 --recursive --check-only --thirdparty fastapi fastapi tests