#!/usr/bin/make -f
# -*- makefile -*-

#export DH_VERBOSE=1

export PYBUILD_NAME=pytest-httpbin

%:
	dh $@ --buildsystem=pybuild

override_dh_auto_test:

override_dh_auto_install:
	dh_auto_install
	http_proxy= https_proxy= PYBUILD_SYSTEM=custom \
				PYBUILD_TEST_ARGS="{interpreter} -m pytest -v -x -s" dh_auto_test
	# run tests after install: plugin needs to get registered by setup.py/entry_points

override_dh_installdocs:
	pandoc -f markdown -t plain -o .pybuild/README README.md
	dh_installdocs -A .pybuild/README

override_dh_installchangelogs:
	sed -n '/'Changelog'/,/'0.0.1'/p' .pybuild/README > .pybuild/changelog
	dh_installchangelogs -A .pybuild/changelog
