sqlite-utils/Justfile

21 lines
402 B
Makefile
Raw Permalink Normal View History

# Run tests and linters
@default: test lint
# Run pytest with supplied options
@test *options:
pipenv run pytest {{options}}
# Run linters: black, flake8, mypy, cog
@lint:
pipenv run black . --check
pipenv run flake8
pipenv run mypy sqlite_utils tests
2022-06-21 12:24:23 -07:00
cog --check README.md docs/*.rst
# Rebuild docs with cog
2022-06-21 12:24:23 -07:00
@cog:
cog -r README.md docs/*.rst
# Apply Black
@black:
pipenv run black .