mirror of
https://github.com/simonw/sqlite-utils.git
synced 2026-08-25 02:34:24 +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 .
|