Files
fastapi-users/Makefile
François Voron f2892aa378 #5 Improve test coverage (#6)
* Improve test coverage of BaseUserDatabase

* Improve unit test isolation

* Improve coverage of router and authentication
2019-10-15 07:54:53 +02:00

15 lines
222 B
Makefile

PIPENV_RUN := pipenv run
format:
$(PIPENV_RUN) isort -rc .
$(PIPENV_RUN) black .
test:
$(PIPENV_RUN) pytest --cov=fastapi_users/
docs-serve:
$(PIPENV_RUN) mkdocs serve
docs-publish:
$(PIPENV_RUN) mkdocs gh-deploy