#!/usr/bin/make -f
export PYBUILD_TEST_ARGS=--no-cov

include /usr/share/dpkg/architecture.mk

# skip two tests that requires 64 bit time_t
# "OverflowError: timestamp out of range for platform time_t"
ifneq (,$(findstring $(DEB_HOST_ARCH), i386))
export PYBUILD_TEST_ARGS=-k 'not test_generate_vouchers_server_selection_errors_and_success and not test_generate_vouchers_auto_selects_single_provider'
endif

%:
	dh $@ --buildsystem=pybuild
