Codebase list pyexcel / fa0c4a79-49dd-4ebf-8785-98fcf0ed8cb5/main Makefile
fa0c4a79-49dd-4ebf-8785-98fcf0ed8cb5/main

Tree @fa0c4a79-49dd-4ebf-8785-98fcf0ed8cb5/main (Download .tar.gz)

Makefile @fa0c4a79-49dd-4ebf-8785-98fcf0ed8cb5/mainraw · history · blame

all: test

test:
	bash test.sh

doc:
	bash document.sh

uml:
	plantuml -tsvg -o ../_static/images/ docs/source/uml/*.uml

format:
	isort -y $(find pyexcel -name "*.py"|xargs echo) $(find tests -name "*.py"|xargs echo)
	black -l 79 pyexcel
	black -l 79 tests
	black -l 79 setup.py
lint:
	bash lint.sh