#!/usr/bin/make -f

export PYBUILD_NAME=flanker
export PYBUILD_BEFORE_TEST=mkdir -p {build_dir}/tests/; cp -rv {dir}/tests/__init__.py {dir}/tests/fixtures/ {build_dir}/tests/
export PYBUILD_TEST_ARGS=-k 'not test_simple_domain_key_signature \
                         and not test_simple_dkim_signature \
                         and not test_container_children'

%:
	dh $@ --buildsystem=pybuild

override_dh_auto_test:
	PYTHONPATH=. dh_auto_test
