1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-04-12 00:11:21 +00:00
bramw_baserow/changelog/Makefile
2024-04-26 08:09:28 +00:00

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;