mirror of
https://github.com/fastapi-users/fastapi-users.git
synced 2025-08-26 04:25:46 +08:00

* Remove database adapter in favor of external dependencies * Prevent flit from installing all optional dependencies when testing build * Remove MongoDB service during CI build
27 lines
389 B
Makefile
27 lines
389 B
Makefile
isort-src:
|
|
isort ./fastapi_users ./tests
|
|
|
|
isort-docs:
|
|
isort ./docs/src -o fastapi_users
|
|
|
|
format: isort-src isort-docs
|
|
black .
|
|
|
|
test:
|
|
pytest --cov=fastapi_users/ --cov-report=term-missing --cov-fail-under=100
|
|
|
|
docs-serve:
|
|
mkdocs serve
|
|
|
|
docs-publish:
|
|
mkdocs gh-deploy
|
|
|
|
bumpversion-major:
|
|
bumpversion major
|
|
|
|
bumpversion-minor:
|
|
bumpversion minor
|
|
|
|
bumpversion-patch:
|
|
bumpversion patch
|