| 12
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
 15
 
 | #!/usr/bin/make -f
export PYBUILD_NAME=django-tagging
%:
	dh $@ --with python3,sphinxdoc --buildsystem=pybuild
override_dh_sphinxdoc:
ifeq (,$(findstring nodoc, $(DEB_BUILD_OPTIONS)))
	PYTHONPATH=. python3 -m sphinx -b html -N docs/ $(CURDIR)/debian/python-django-tagging-doc/usr/share/doc/python-django-tagging-doc/html
	dh_sphinxdoc
endif
override_dh_auto_test:
	dh_auto_test -- --system=custom --test-args="PYTHONPATH=. DJANGO_SETTINGS_MODULE=tagging.tests.settings django-admin test --verbosity=2"
 |