Revision 7ead4a71a6bd7af3597b067a421bd02d6a2d5769 authored by JeanKossaifi on 23 October 2016, 18:51:03 UTC, committed by JeanKossaifi on 23 October 2016, 18:51:03 UTC
Useful for testing (e.g. regression models)
1 parent aaae58c
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