blob: 99dbc845f6b8ec5a79bf8f4626a4e1a51aa2785c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/usr/bin/make -f
# export DH_VERBOSE=1
UPSTREAM_GIT = git://github.com/rbarrois/factory_boy.git
include /usr/share/openstack-pkg-tools/pkgos.make
%:
dh $@ --with python2 --buildsystem=python_distutils
override_dh_auto_test:
ifeq (,$(findstring nocheck, $(DEB_BUILD_OPTIONS)))
python -W default setup.py test
endif
|