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 26 27
|
#!/usr/bin/make -f
export PYBUILD_NAME = docxtpl
%:
dh $@ --buildsystem pybuild
override_dh_auto_test: debian/test.jpg debian/test.png
cp debian/test.png tests/templates/dummy_pic_for_header.png
cp debian/test.png tests/templates/python_logo.png
cp debian/test.png tests/templates/django.png
cp debian/test.png tests/templates/python.png
cp debian/test.png tests/templates/zope.png
cp debian/test.png tests/templates/bottle.png
cp debian/test.png tests/templates/tornado.png
cp debian/test.png tests/templates/pyramid.png
cp debian/test.jpg tests/templates/python_jpeg.jpg
cd tests && PYTHONPATH=$$(find ../.pybuild -name build 2>/dev/null | xargs echo | tr ' ' :) python3 runtests.py
execute_after_dh_auto_clean:
rm -rf docxtpl.egg-info tests/output
debian/test.jpg: debian/test.png
pngtopnm $< | pnmtojpeg > $@
debian/test.png:
qrencode --output $@ TEST
|