#!/usr/bin/make -f
# See debhelper(7) (uncomment to enable)
# output every command that modifies files on the build system.
#export DH_VERBOSE = 1

export PYBUILD_NAME=deblur

%:
	dh $@ --buildsystem=pybuild

override_dh_auto_test:
	PATH=$$PATH:$(CURDIR)/build/scripts-3.8/ PYTHONPATH=$(CURDIR) nosetests3 || echo ignoring failed tests

override_dh_auto_clean:
	dh_auto_clean
	rm -f deblur.log
