mirror of
https://gitlab.com/bramw/baserow.git
synced 2025-04-12 00:11:21 +00:00
18 lines
352 B
Makefile
18 lines
352 B
Makefile
install-dependencies:
|
|
pip install -r requirements.txt
|
|
|
|
lint:
|
|
flake8 src tests && \
|
|
black . --extend-exclude='/generated/' --check && \
|
|
isort --check --skip generated --profile black src tests && \
|
|
bandit -r src/ \
|
|
|| exit;
|
|
|
|
format:
|
|
black . || exit;
|
|
|
|
sort:
|
|
isort --skip generated --profile black src tests || exit;
|
|
|
|
test:
|
|
pytest tests || exit;
|