Codebase list pyexcel / run/d5f92fea-d40f-4160-bd44-933a62680a0a/main Makefile
run/d5f92fea-d40f-4160-bd44-933a62680a0a/main

Tree @run/d5f92fea-d40f-4160-bd44-933a62680a0a/main (Download .tar.gz)

Makefile @run/d5f92fea-d40f-4160-bd44-933a62680a0a/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