Sebastián Ramírez
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
3 deletions
-
scripts/test.sh
|
|
@ -7,9 +7,8 @@ set -x |
|
|
|
if [ -f ./test.db ]; then |
|
|
|
rm ./test.db |
|
|
|
fi |
|
|
|
|
|
|
|
export PYTHONPATH=./docs/src |
|
|
|
pytest --cov=fastapi --cov=tests --cov=docs/src --cov-report=term-missing ${@} |
|
|
|
bash ./scripts/lint.sh |
|
|
|
# Check README.md is up to date |
|
|
|
diff --brief docs/index.md README.md |
|
|
|
export PYTHONPATH=./docs/src |
|
|
|
pytest --cov=fastapi --cov=tests --cov=docs/src --cov-report=term-missing ${@} |
|
|
|