2022-06-21 12:28:01 -07:00
|
|
|
# Run tests and linters
|
2022-06-20 12:54:46 -07:00
|
|
|
@default: test lint
|
|
|
|
|
|
2022-06-21 12:28:01 -07:00
|
|
|
# Run pytest with supplied options
|
2022-06-20 12:54:46 -07:00
|
|
|
@test *options:
|
|
|
|
|
pipenv run pytest {{options}}
|
|
|
|
|
|
2022-06-21 12:28:01 -07:00
|
|
|
# Run linters: black, flake8, mypy, cog
|
2022-06-20 12:54:46 -07:00
|
|
|
@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
|
|
|
|
|
|
2022-06-21 12:28:01 -07:00
|
|
|
# Rebuild docs with cog
|
2022-06-21 12:24:23 -07:00
|
|
|
@cog:
|
|
|
|
|
cog -r README.md docs/*.rst
|
2022-06-20 12:54:46 -07:00
|
|
|
|
2022-06-21 12:28:01 -07:00
|
|
|
# Apply Black
|
2022-06-20 12:54:46 -07:00
|
|
|
@black:
|
|
|
|
|
pipenv run black .
|