#!/usr/bin/make -f

export PYBUILD_NAME = mox

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

override_dh_auto_test:
ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
	for version in $(shell pyversions -vr); do python$$version mox_test.py; done
endif
