https://github.com/tensorly/tensorly
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
Tip revision: fd07894e1dd3c02a08748fc7cef30de9f0bbe7dc authored by oppentech on 21 April 2017, 07:05:53 UTC
Merge branch 'improve-partial_svd'
Tip revision: fd07894
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