Revision d5412466e4bb06b3d6d38d61ce68e0bd62c3d500 authored by Aaron Meurer on 12 March 2019, 17:59:13 UTC, committed by GitHub on 12 March 2019, 17:59:13 UTC
2 parent s 5c81d44 + d0976b2
Raw File
Makefile
# Automate testing etc
BACKEND?='numpy'

all: install test

install:
	pip install -e .

test:
	TENSORLY_BACKEND=$(BACKEND) pytest -v tensorly

test-all:
	TENSORLY_BACKEND='mxnet' pytest -v tensorly
	TENSORLY_BACKEND='numpy' pytest -v tensorly
	TENSORLY_BACKEND='pytorch' pytest -v tensorly

test-coverage:
	TENSORLY_BACKEND=$(BACKEND) pytest -v --cov tensorly tensorly

back to top