Rename scripts/ to tools/
This commit is contained in:
parent
2513f08d07
commit
7cb3501540
8 changed files with 4 additions and 4 deletions
18
tools/Makefile
Normal file
18
tools/Makefile
Normal file
|
@ -0,0 +1,18 @@
|
|||
.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
|
||||
pylint tools
|
||||
|
||||
test: venv
|
||||
pytest -n ${CPU_CORES} --color=yes -v .
|
Loading…
Add table
Add a link
Reference in a new issue