https://github.com/tensorly/tensorly
Raw File
Tip revision: 1e94ea4b6072bcbd91b30bba00d9aa45cb0f6774 authored by JeanKossaifi on 22 October 2016, 00:09:35 UTC
prepare first version
Tip revision: 1e94ea4
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