diff --git a/Justfile b/Justfile new file mode 100644 index 0000000..b069682 --- /dev/null +++ b/Justfile @@ -0,0 +1,12 @@ +@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 .