#!/usr/bin/make -f

%:
	dh $@ --buildsystem=pybuild

execute_before_dh_auto_build:
	PYTHONPATH=. http_proxy='127.0.0.1:9' sphinx-build -N -bhtml bugwarrior/docs/ bugwarrior/docs/_build/html # HTML generator

override_dh_auto_test:
	mkdir test_home
	HOME=`pwd`/test_home LC_ALL=C.UTF-8 python3 -m nose -v tests
