File: rules

package info (click to toggle)
django-pipeline 1.6.8-3
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 736 kB
  • ctags: 565
  • sloc: python: 2,458; makefile: 119
file content (25 lines) | stat: -rwxr-xr-x 718 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#!/usr/bin/make -f
# -*- makefile -*-

export PYBUILD_NAME=django-pipeline
export PYBUILD_AFTER_BUILD_python3=sphinx-build -b html -d docs/.build/.doctrees -N docs docs/.build/html

# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1

%:
	dh $@ --with python2,python3,sphinxdoc --buildsystem=pybuild

override_dh_auto_build:
	dh_auto_build

override_dh_clean:
	rm -rf docs/.build
	dh_clean

override_dh_installchangelogs:
	dh_installchangelogs -- HISTORY.rst

override_dh_auto_test:
	PYTHONPATH=. /usr/bin/django-admin collectstatic --settings=tests.settings --noinput
	PYBUILD_SYSTEM=custom PYBUILD_TEST_ARGS="PYTHONPATH=. python{version} /usr/bin/django-admin test --settings=tests.settings" dh_auto_test