https://github.com/tensorly/tensorly
Raw File
Tip revision: c53b8a619956697bfcf07576328bf2d745338c9d authored by Jean KOSSAIFI on 30 October 2016, 17:56:52 UTC
Updated README and setup.py, removed setup.cfg.
Tip revision: c53b8a6
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