#!/usr/bin/make -f

override_dh_auto_test:
	# upstream tests require ZFS (surprise!)
	# since this is non-trivial to get set up and working nicely, we'll let this stay conditional on whether the "zfs" tool is installed
	! command -v zfs > /dev/null || \
		dh_auto_test -O--buildsystem=golang

%:
	dh $@ --buildsystem=golang --with=golang
