Revision 8b374f845c76a1ff9a126cbc8b4e587023aa84bb authored by Jean KOSSAIFI on 20 October 2016, 17:10:45 UTC, committed by Jean KOSSAIFI on 20 October 2016, 17:10:45 UTC
1 parent dd5db83
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