https://github.com/tensorly/tensorly
Raw File
Tip revision: cf0d7714ee90c4c9469c30b72992be17049c7591 authored by Jean KOSSAIFI on 21 October 2016, 18:28:15 UTC
Added proximal and HOM
Tip revision: cf0d771
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