mirror of
https://github.com/simonw/sqlite-utils.git
synced 2026-07-23 17:34:32 +02:00
16 lines
265 B
Makefile
16 lines
265 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
|
|
cog --check README.md docs/*.rst
|
|
|
|
@cog:
|
|
cog -r README.md docs/*.rst
|
|
|
|
@black:
|
|
pipenv run black .
|