#!/usr/bin/make -f

export DH_VERBOSE = 1

export PYBUILD_NAME=peptidebuilder

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

override_dh_auto_install:
	dh_auto_install
	find debian/python3-peptidebuilder/usr/lib/ -name .coverage -delete

override_dh_auto_test:
ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
	PYTHONPATH=$$(pwd) pytest-3
endif
