Lint first in tests, to error out faster (#948)

This commit is contained in:
Sebastián Ramírez
2020-02-04 05:41:42 +01:00
committed by GitHub
parent 2e0a102565
commit 9573130630

View File

@@ -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 ${@}