Revision c53b8a619956697bfcf07576328bf2d745338c9d authored by Jean KOSSAIFI on 30 October 2016, 17:56:52 UTC, committed by Jean KOSSAIFI on 30 October 2016, 17:56:52 UTC
1 parent 3438c5a
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