https://github.com/tensorly/tensorly
Revision 53b58af5f5cbcd539b39bfbd56502914c7ff68bc authored by Jean KOSSAIFI on 20 October 2016, 11:38:13 UTC, committed by Jean KOSSAIFI on 20 October 2016, 11:38:13 UTC
0 parent
Raw File
Tip revision: 53b58af5f5cbcd539b39bfbd56502914c7ff68bc authored by Jean KOSSAIFI on 20 October 2016, 11:38:13 UTC
Initial commit
Tip revision: 53b58af
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