#!/usr/bin/make -f

export PYBUILD_NAME=pyodata

%:
	dh $@ --with python3 --buildsystem=pybuild

execute_before_dh_auto_test:
	set -e ; for py3ver in $(shell py3versions -rv); do \
		cp tests/*.xml .pybuild/cpython3_$${py3ver}_pyodata/build/tests/ ; \
		cp tests/enormous_batch_response .pybuild/cpython3_$${py3ver}_pyodata/build/tests/ ; \
	done
