sqlite-utils/Justfile

12 lines
193 B
Makefile
Raw Normal View History

@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 .