Fix tools makefile

This commit is contained in:
jo 2021-09-07 23:09:53 +02:00
parent 7cb3501540
commit 4724a30937
1 changed files with 6 additions and 1 deletions

View File

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