1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
|
#!/usr/bin/make -f
UPSTREAM_GIT := https://github.com/harlowja/fasteners.git
include /usr/share/openstack-pkg-tools/pkgos.make
export PYBUILD_TEST_ARGS= -v -n auto tests -k 'not test_eventlet_spawn_n_bug'
%:
dh $@ --buildsystem=pybuild --with python3
#override_dh_auto_test:
#ifeq (,$(findstring nocheck, $(DEB_BUILD_OPTIONS)))
# set -e ; for pyvers in $(PYTHON3S) ; do \
# PYTHONPATH=$(CURDIR)/debian/tmp/usr/lib/python3/dist-packages PYTHON=python$$pyvers -m pytest -v ; \
# done
#endif
|