Revision 1788d265bf48b86daae7ecf1b801c9f4645e2dee authored by Jean Kossaifi on 03 December 2016, 23:39:51 UTC, committed by Jean Kossaifi on 03 December 2016, 23:43:03 UTC
1 parent 3d0450f
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