Files
fastapi/scripts/lint.sh
Sebastián Ramírez 600f15faa0 ✔ Improve support for tests in editor (#1699)
* ♻️ Remove required extra steps to test in editor

* 🎨 Format lint script

* 📝 Remove obsolete extra steps required to test in editor from docs

* 🐛 Fix coverage
2020-07-10 11:08:19 +02:00

9 lines
127 B
Bash
Executable File

#!/usr/bin/env bash
set -e
set -x
mypy fastapi
black fastapi tests --check
isort fastapi tests docs_src scripts --check-only