libretime/tools/Makefile

24 lines
332 B
Makefile
Raw Normal View History

2021-09-02 16:25:06 +02:00
.PHONY: lint test
.ONESHELL:
SHELL := bash
CPU_CORES := $(shell nproc)
all: lint test
venv:
python3 -m venv venv
2021-09-07 23:09:53 +02:00
source venv/bin/activate
2021-09-02 16:25:06 +02:00
pip install -r requirements-dev.txt
lint: venv
2021-09-07 23:09:53 +02:00
source venv/bin/activate
2021-09-07 22:56:35 +02:00
pylint tools
2021-09-02 16:25:06 +02:00
test: venv
2021-09-07 23:09:53 +02:00
source venv/bin/activate
2021-09-02 16:25:06 +02:00
pytest -n ${CPU_CORES} --color=yes -v .
2021-09-07 23:09:53 +02:00
clean:
rm -Rf venv