https://github.com/tensorly/tensorly
Revision 3ec6340dc653cefa88d87967f756a2f8e93879f0 authored by Jean KOSSAIFI on 20 October 2016, 21:00:33 UTC, committed by Jean KOSSAIFI on 20 October 2016, 21:00:33 UTC
1 parent 60bad71
Raw File
Tip revision: 3ec6340dc653cefa88d87967f756a2f8e93879f0 authored by Jean KOSSAIFI on 20 October 2016, 21:00:33 UTC
Added metrics
Tip revision: 3ec6340
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