17 lines
546 B
Makefile
Executable file
17 lines
546 B
Makefile
Executable file
#!/usr/bin/make -f
|
|
|
|
export LC_ALL=C.UTF-8
|
|
export PYBUILD_TEST_ARGS=python{version} -m coverage run --omit='/usr/*,$(CURDIR)/gitlint/tests/*,$(CURDIR)/gitlint/qa/*' -m unittest discover -v -s $(CURDIR)/gitlint/tests
|
|
|
|
%:
|
|
dh ${@} --buildsystem=pybuild --with python3
|
|
|
|
override_dh_auto_test:
|
|
PYBUILD_SYSTEM=custom dh_auto_test
|
|
|
|
execute_after_dh_auto_install:
|
|
# we don't want them in the package?
|
|
rm -rf debian/gitlint/usr/lib/python*/dist-packages/qa
|
|
|
|
execute_after_dh_fixperms:
|
|
find debian/gitlint/usr/lib -name commit-msg -exec chmod +x {} \;
|