mirror of
https://gitlab.com/bramw/baserow.git
synced 2024-11-21 23:37:55 +00:00
17 lines
262 B
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;
|