#!/usr/bin/make -f

export PYBUILD_NAME=qmix

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

override_dh_auto_test:
# Exclude s390x from running tests
ifeq ($(DEB_HOST_ARCH), s390x)
	@echo "Tests disabled on s390x architecture."
else
	dh_auto_test
endif
