mirror of
https://github.com/fastapi/fastapi.git
synced 2026-01-15 09:29:01 -05:00
* ♻️ Remove required extra steps to test in editor * 🎨 Format lint script * 📝 Remove obsolete extra steps required to test in editor from docs * 🐛 Fix coverage
9 lines
127 B
Bash
Executable File
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
|