https://github.com/tensorly/tensorly
Revision d86650eb5c770e6a165678aeb079b28629e83c56 authored by Jean KOSSAIFI on 20 October 2016, 17:20:28 UTC, committed by Jean KOSSAIFI on 20 October 2016, 17:20:28 UTC
1 parent 8b374f8
Raw File
Tip revision: d86650eb5c770e6a165678aeb079b28629e83c56 authored by Jean KOSSAIFI on 20 October 2016, 17:20:28 UTC
Minor changes to norm
Tip revision: d86650e
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