Revision 30002e003174dc4b694d8f0ce5d0923b33dc525b authored by Jean KOSSAIFI on 20 October 2016, 17:41:06 UTC, committed by Jean KOSSAIFI on 20 October 2016, 17:41:06 UTC
1 parent d86650e
Raw File
Makefile
# Automate testing etc

NOSETESTS ?= nosetests


all: install test

install:
	pip install -e .

test-coverage:
	nosetests -v --exe --doctest-tests --with-coverage --cover-package=tensorly tensorly

test:
	nosetests -v --exe --doctest-tests tensorly
back to top