sqlite-utils/Justfile
2022-06-20 12:54:46 -07:00

12 lines
193 B
Makefile

@default: test lint
@test *options:
pipenv run pytest {{options}}
@lint:
pipenv run black . --check
pipenv run flake8
pipenv run mypy sqlite_utils tests
@black:
pipenv run black .