Revision 37049cf2f7dfc11c85aa71d1c454dbb79d9b1df7 authored by Jean KOSSAIFI on 20 October 2016, 16:01:53 UTC, committed by Jean KOSSAIFI on 20 October 2016, 16:01:53 UTC
1 parent d53f0b2
Raw File
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