https://github.com/tensorly/tensorly
Revision 7f9d41c84c04a14b8c4a2abf70ce0b1f4f2c73c5 authored by Jean KOSSAIFI on 20 October 2016, 18:00:46 UTC, committed by Jean KOSSAIFI on 20 October 2016, 18:00:46 UTC
1 parent 0be6da8
Raw File
Tip revision: 7f9d41c84c04a14b8c4a2abf70ce0b1f4f2c73c5 authored by Jean KOSSAIFI on 20 October 2016, 18:00:46 UTC
Cosmetic changes
Tip revision: 7f9d41c
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