1
0
mirror of https://gitlab.com/bramw/baserow.git synced 2024-11-21 23:37:55 +00:00
bramw_baserow/plugin-boilerplate/{{ cookiecutter.project_slug }}/plugins/{{ cookiecutter.project_module }}/backend/Makefile

17 lines
262 B
Makefile

lint:
flake8 src tests && \
black . --extend-exclude='/generated/' --check && \
bandit -r src/ \
|| exit;
lint-python: lint
format:
black . --extend-exclude='/generated/' || exit;
test:
pytest tests || exit;
test-parallel:
pytest tests -n 10 || exit;