mirror of
https://github.com/fastapi-users/fastapi-users.git
synced 2026-03-13 07:49:55 +08:00
9 lines
113 B
Makefile
9 lines
113 B
Makefile
PIPENV_RUN := pipenv run
|
|
|
|
format:
|
|
$(PIPENV_RUN) isort -rc .
|
|
$(PIPENV_RUN) black .
|
|
|
|
test:
|
|
$(PIPENV_RUN) pytest
|