#!/usr/bin/make -f

# examples/ folder is not for build, but just for docs
export DH_GOLANG_EXCLUDES := examples

override_dh_auto_test:
ifeq ($(filter nocheck, $(DEB_BUILD_OPTIONS)),)
	ulimit -n 2048 && dh_auto_test -- -timeout 20m -skip Test6GBEcho
endif

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