https://github.com/tensorly/tensorly
Revision cfb74852cb0c649285404d9acedb8abc7b54ef07 authored by JeanKossaifi on 22 October 2016, 00:04:41 UTC, committed by JeanKossaifi on 22 October 2016, 10:57:37 UTC
1 parent cf0d771
Raw File
Tip revision: cfb74852cb0c649285404d9acedb8abc7b54ef07 authored by JeanKossaifi on 22 October 2016, 00:04:41 UTC
Updated setup file
Tip revision: cfb7485
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