Fix tools makefile

This commit is contained in:
jo 2021-09-07 23:09:53 +02:00
parent 7cb3501540
commit 4724a30937

View file

@ -8,11 +8,16 @@ all: lint test
venv: venv:
python3 -m venv venv python3 -m venv venv
source venv/bin/active source venv/bin/activate
pip install -r requirements-dev.txt pip install -r requirements-dev.txt
lint: venv lint: venv
source venv/bin/activate
pylint tools pylint tools
test: venv test: venv
source venv/bin/activate
pytest -n ${CPU_CORES} --color=yes -v . pytest -n ${CPU_CORES} --color=yes -v .
clean:
rm -Rf venv