https://github.com/tensorly/tensorly
Revision 3d0450f2a212a9b0516cd08ed6b7ab9a2f737233 authored by Jean KOSSAIFI on 31 October 2016, 16:21:59 UTC, committed by Jean KOSSAIFI on 31 October 2016, 16:23:39 UTC
1 parent c53b8a6
Raw File
Tip revision: 3d0450f2a212a9b0516cd08ed6b7ab9a2f737233 authored by Jean KOSSAIFI on 31 October 2016, 16:21:59 UTC
FIX: proximal naming + updated corresponding doc.
Tip revision: 3d0450f
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