https://github.com/tensorly/tensorly
Revision 047a499ea5423dc2cd3b3d694c1496f9d07ec35d authored by Jean KOSSAIFI on 20 October 2016, 16:51:10 UTC, committed by Jean KOSSAIFI on 20 October 2016, 16:51:10 UTC
1 parent 211fc94
Raw File
Tip revision: 047a499ea5423dc2cd3b3d694c1496f9d07ec35d authored by Jean KOSSAIFI on 20 October 2016, 16:51:10 UTC
Sensitive imports
Tip revision: 047a499
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