https://github.com/tensorly/tensorly
Revision 72c196ecc4471ace51bc576e2f3018c258366d22 authored by Jean Kossaifi on 06 January 2017, 12:58:11 UTC, committed by Jean Kossaifi on 06 January 2017, 12:58:11 UTC
1 parent 53a8be0
Raw File
Tip revision: 72c196ecc4471ace51bc576e2f3018c258366d22 authored by Jean Kossaifi on 06 January 2017, 12:58:11 UTC
Preparing release.
Tip revision: 72c196e
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