https://github.com/tensorly/tensorly
Revision 86ba3b4b4618ade63aef8cdfb1c85a21d6d483e3 authored by Jean Kossaifi on 30 January 2017, 19:36:25 UTC, committed by Jean Kossaifi on 30 January 2017, 19:36:25 UTC
1 parent 7205bd8
Raw File
Tip revision: 86ba3b4b4618ade63aef8cdfb1c85a21d6d483e3 authored by Jean Kossaifi on 30 January 2017, 19:36:25 UTC
DOC: minor theme tweaks.
Tip revision: 86ba3b4
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