Revision fd07894e1dd3c02a08748fc7cef30de9f0bbe7dc authored by oppentech on 21 April 2017, 07:05:53 UTC, committed by oppentech on 21 April 2017, 07:05:53 UTC
2 parent s d59fb75 + c47394d
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