mirror of
https://github.com/fastapi/fastapi.git
synced 2025-12-30 09:39:20 -05:00
10 lines
251 B
Bash
Executable File
10 lines
251 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
set -x
|
|
|
|
# Check README.md is up to date
|
|
python ./scripts/docs.py verify-readme
|
|
export PYTHONPATH=./docs_src
|
|
pytest --cov=fastapi --cov=tests --cov=docs_src --cov-report=term-missing:skip-covered --cov-report=xml tests ${@}
|