Codebase list pyexcel / 62dcac7c-1cf7-4f89-8443-b4e2551f6ec3/main Makefile
62dcac7c-1cf7-4f89-8443-b4e2551f6ec3/main

Tree @62dcac7c-1cf7-4f89-8443-b4e2551f6ec3/main (Download .tar.gz)

Makefile @62dcac7c-1cf7-4f89-8443-b4e2551f6ec3/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