summaryrefslogtreecommitdiffstats
path: root/debian/rules
blob: 8ba73867113846c4345d34fb8fc065dbf673117f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/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 {} \;