mirror of
https://gitlab.com/bramw/baserow.git
synced 2025-01-30 18:36:29 +00:00
12 lines
266 B
Makefile
12 lines
266 B
Makefile
install-dependencies:
|
|
apt-get update && apt-get install -y libpq-dev postgresql postgresql-contrib
|
|
pip install -r requirements/base.txt
|
|
|
|
install-dev-dependencies:
|
|
pip install -r requirements/dev.txt
|
|
|
|
lint:
|
|
flake8 src tests || exit;
|
|
|
|
test:
|
|
pytest tests || exit;
|