libretime/tools/Makefile

19 lines
257 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
source venv/bin/active
pip install -r requirements-dev.txt
lint: venv
2021-09-07 22:56:35 +02:00
pylint tools
2021-09-02 16:25:06 +02:00
test: venv
pytest -n ${CPU_CORES} --color=yes -v .