https://github.com/tensorly/tensorly
Revision 4030d377141e1cd54f37ab0713f41ef72e0735cb authored by Jean KOSSAIFI on 25 October 2016, 14:44:06 UTC, committed by Jean KOSSAIFI on 25 October 2016, 14:44:06 UTC
1 parent a360a82
Raw File
Tip revision: 4030d377141e1cd54f37ab0713f41ef72e0735cb authored by Jean KOSSAIFI on 25 October 2016, 14:44:06 UTC
DOC: improved documentation.
Tip revision: 4030d37
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