https://github.com/tensorly/tensorly
Revision c042fadbf48c1c2f24ebff30c9aa63274668ebcf authored by Jean KOSSAIFI on 20 October 2016, 21:17:26 UTC, committed by Jean KOSSAIFI on 20 October 2016, 21:17:26 UTC
1 parent 6964bce
Raw File
Tip revision: c042fadbf48c1c2f24ebff30c9aa63274668ebcf authored by Jean KOSSAIFI on 20 October 2016, 21:17:26 UTC
Minor doc enhancements
Tip revision: c042fad
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