#!/usr/bin/make -f

# Debhelper rules

export DH_VERBOSE=1

LC_ALL=C
export LC_ALL

%:
	dh $@ --no-parallel --with python3

override_dh_auto_install:
	dh_auto_install -- PREFIX=/usr
	rm -rf  debian/lcov/usr/etc

override_dh_auto_test:
	dh_auto_test || echo "Ignore test failures - just capture in logs"
