pythonasyncioapiasyncfastapiframeworkjsonjson-schemaopenapiopenapi3pydanticpython-typespython3redocreststarletteswaggerswagger-uiuvicornweb
10 lines
250 B
10 lines
250 B
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
set -x
|
|
|
|
bash ./scripts/lint.sh
|
|
# Check README.md is up to date
|
|
diff --brief docs/en/docs/index.md README.md
|
|
export PYTHONPATH=./docs_src
|
|
pytest --cov=fastapi --cov=tests --cov=docs/src --cov-report=term-missing tests ${@}
|
|
|