#!/usr/bin/make -f

%: 
	dh $@ --with python3

override_dh_install:
	dh_install
	rm -f debian/*/usr/share/sinntp/tests.py

override_dh_auto_test:
ifeq ($(filter nocheck,$(DEB_BUILD_OPTIONS)),)
	python3 tests.py --verbose
endif

# vim:ts=4 sw=4 noet
