mirror of
https://github.com/simonw/sqlite-utils.git
synced 2026-07-23 01:14:31 +02:00
12 lines
193 B
Makefile
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 .
|