https://github.com/tensorly/tensorly
Revision 33ad3bee5930db45c836cdfe656150a0cf5b8738 authored by JeanKossaifi on 24 October 2016, 11:10:38 UTC, committed by JeanKossaifi on 24 October 2016, 11:10:38 UTC
1 parent 7ead4a7
Raw File
Tip revision: 33ad3bee5930db45c836cdfe656150a0cf5b8738 authored by JeanKossaifi on 24 October 2016, 11:10:38 UTC
Added examples
Tip revision: 33ad3be
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