Fix tools makefile
This commit is contained in:
parent
7cb3501540
commit
4724a30937
1 changed files with 6 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue