https://github.com/tensorly/tensorly
Revision 7c59ea62e640f7452ea9e45d6cf9bcb2b3e298a2 authored by Jean Kossaifi on 13 December 2016, 16:23:28 UTC, committed by Jean Kossaifi on 13 December 2016, 16:54:18 UTC
1 parent 471c643
Raw File
Tip revision: 7c59ea62e640f7452ea9e45d6cf9bcb2b3e298a2 authored by Jean Kossaifi on 13 December 2016, 16:23:28 UTC
Add coverage with coveralls
Tip revision: 7c59ea6
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