Skip to content
Snippets Groups Projects
Makefile 260 B

default:test

test:
	python -m unittest -v

pytest:
	# pytest is faster and offer a better look
	# Install w/ pip
	python -m pytest -v

cover:
	cd ../xaal/lib/;coverage run --source=. -m unittest discover -v -b ../../tests/; coverage  html -d /tmp/coverage