https://github.com/tensorly/tensorly
Revision cce6751c3a7cdaaa10e3023ad5d809ebf7b2a9ea authored by Jean Kossaifi on 13 February 2017, 20:08:39 UTC, committed by Jean Kossaifi on 13 February 2017, 20:08:39 UTC
1 parent 86ba3b4
Raw File
Tip revision: cce6751c3a7cdaaa10e3023ad5d809ebf7b2a9ea authored by Jean Kossaifi on 13 February 2017, 20:08:39 UTC
DOC: fix math display
Tip revision: cce6751
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