summaryrefslogtreecommitdiff
path: root/debian/rules
blob: e6efab9a16005546160c74f8d49a8746200ae410 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/usr/bin/make -f

export PYBUILD_NAME=compose
%:
	dh $@ --buildsystem=pybuild

execute_after_dh_auto_install:
	mkdir -p debian/docker-compose/usr/bin
	mv debian/python3-$(PYBUILD_NAME)/usr/bin/* debian/docker-compose/usr/bin

override_dh_auto_test:
	# tests disabled because they require networking

test:
	which pytest || (echo "pytest not found. install python-pytest" ; exit 1)
	pytest tests