Rename scripts/ to tools/

This commit is contained in:
jo 2021-09-07 22:56:35 +02:00
parent 2513f08d07
commit 7cb3501540
8 changed files with 4 additions and 4 deletions

18
tools/Makefile Normal file
View 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 .