Codebase list pyexcel / d44fb6ef-2387-4282-a5a3-b883f79a9e44/main Makefile
d44fb6ef-2387-4282-a5a3-b883f79a9e44/main

Tree @d44fb6ef-2387-4282-a5a3-b883f79a9e44/main (Download .tar.gz)

Makefile @d44fb6ef-2387-4282-a5a3-b883f79a9e44/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