#!/usr/bin/make -f
export PYBUILD_TEST_ARGS = -v

%:
	dh $@ -Spybuild --with python3

execute_after_dh_auto_install:
	-find debian -type f -name .coverage -delete \;

override_dh_auto_test:
# skipping tests for now because it requires many unpackaged python modules
	:

override_dh_auto_clean:
	dh_auto_clean
	-find . -type d -name 'skorch.egg*' -exec rm -rf '{}' \;
