https://github.com/tensorly/tensorly
Raw File
Tip revision: f7e7962ff272df751da09e08d16cf9978bc37e01 authored by Jean Kossaifi on 03 December 2016, 23:53:35 UTC
Updated version
Tip revision: f7e7962
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