https://github.com/tensorly/tensorly
Revision 7205bd83fdc56e3c7d14021f2cb2af3129e93b50 authored by Jean Kossaifi on 18 January 2017, 18:02:33 UTC, committed by Jean Kossaifi on 23 January 2017, 19:00:55 UTC
1 parent 41ce484
Raw File
Tip revision: 7205bd83fdc56e3c7d14021f2cb2af3129e93b50 authored by Jean Kossaifi on 18 January 2017, 18:02:33 UTC
New theme for the website.
Tip revision: 7205bd8
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