https://github.com/GPflow/GPflow
Revision baa50bb0e365e9e5e40d5792b28e75d11c793235 authored by st-- on 11 July 2019, 13:14:25 UTC, committed by GitHub on 11 July 2019, 13:14:25 UTC
* clean up test_broadcasting

* move _broadcasting_elementwise_op into misc.py

* add remaining kernels to test_broadcasting

* add documentation of broadcasting behaviour to kernels module

* add note to ArcCosine docstring that broadcasting has not yet been implemented
1 parent 378d9e8
Raw File
Tip revision: baa50bb0e365e9e5e40d5792b28e75d11c793235 authored by st-- on 11 July 2019, 13:14:25 UTC
Clean up kernel broadcasting tests & documentation (#1000)
Tip revision: baa50bb
Makefile
.PHONY: help clean dev docs package test

help:
	@echo "The following make targets are available:"
	@echo "	dev-install		install all dependencies for dev environment and sets a egg link to the project sources"
	@echo "	install			install all dependencies and the project in the current environment"
	@echo "	package			build pip package"
	@echo "	test			run all tests in parallel"
	@echo "	clean			removes package, build files and egg info"

clean:
	rm -rf dist *.egg-info build

dev-install:
	pip install -e .

install:
	pip install .

package:
	python setup.py bdist sdist

test:
	pytest -n auto tests/
back to top