https://github.com/tensorly/tensorly
Revision aa93b2bbca7fa6009e5201a502316c2b2d288f91 authored by Jean Kossaifi on 27 February 2017, 15:09:32 UTC, committed by Jean Kossaifi on 27 February 2017, 15:09:32 UTC
1 parent 7146ca6
Raw File
Tip revision: aa93b2bbca7fa6009e5201a502316c2b2d288f91 authored by Jean Kossaifi on 27 February 2017, 15:09:32 UTC
Increment version
Tip revision: aa93b2b
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