https://github.com/tensorly/tensorly
Revision 76b6361870166107277f12bbc339ee34e3d27b0e authored by Jean KOSSAIFI on 25 October 2016, 15:01:12 UTC, committed by Jean KOSSAIFI on 25 October 2016, 15:01:12 UTC
* Added badge.
* Converted into Restructured Text from markdown.
* Minor edits.
1 parent 4030d37
Raw File
Tip revision: 76b6361870166107277f12bbc339ee34e3d27b0e authored by Jean KOSSAIFI on 25 October 2016, 15:01:12 UTC
Updated README.
Tip revision: 76b6361
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