mirror of
https://github.com/fastapi/fastapi.git
synced 2026-01-18 02:49:51 -05:00
* 🐛 Fix extra support for enum with its own schema * ✅ Fix/update test for enum with its own schema * 🐛 Fix type declarations * 🔧 Update format and lint scripts to support locally installed Pydantic and Starlette * 🐛 Add temporary type ignores while enum schemas are merged
9 lines
290 B
Bash
Executable File
9 lines
290 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
set -x
|
|
|
|
mypy fastapi
|
|
black fastapi tests --check
|
|
isort --multi-line=3 --trailing-comma --force-grid-wrap=0 --combine-as --line-width 88 --recursive --check-only --thirdparty fastapi --thirdparty fastapi --thirdparty pydantic --thirdparty starlette fastapi tests
|