mirror of
https://github.com/rjNemo/fastapi
synced 2026-06-06 10:36:39 +00:00
9 lines
251 B
Bash
Executable file
9 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 ${@}
|