#!/usr/bin/make -f

# We do not want to ship compressed files under testdata
export DH_GOLANG_EXCLUDES = testdata

%:
	dh $@ --builddirectory=debian/_build --buildsystem=golang

override_dh_auto_test:
	# skip TestReader that requires files from excluded testdata
	dh_auto_test -- -short -skip="\
	TestReader|\
	"
