30 lines
995 B
Makefile
Executable File
30 lines
995 B
Makefile
Executable File
#!/usr/bin/make -f
|
|
|
|
UPSTREAM_GIT = git://github.com/openstack/taskflow.git
|
|
include /usr/share/openstack-pkg-tools/pkgos.make
|
|
|
|
export OSLO_PACKAGE_VERSION=$(VERSION)
|
|
|
|
%:
|
|
dh $@ --buildsystem=python_distutils --with python2
|
|
|
|
override_dh_clean:
|
|
dh_clean -O--buildsystem=python_distutils
|
|
find . -iname '*.pyc' -delete
|
|
|
|
override_dh_auto_test:
|
|
ifeq (,$(findstring nocheck, $(DEB_BUILD_OPTIONS)))
|
|
@echo "===> Running tests"
|
|
set -e ; set -x ; for i in 2.7 $(PYTHON3S) ; do \
|
|
PYMAJOR=`echo $$i | cut -d'.' -f1` ; \
|
|
echo "===> Testing with python$$i (python$$PYMAJOR)" ; \
|
|
rm -rf .testrepository ; \
|
|
testr-python$$PYMAJOR init ; \
|
|
TEMP_REZ=`mktemp -t` ; \
|
|
PYTHONPATH=$(CURDIR) PYTHON=python$$i testr-python$$PYMAJOR run --subunit 'taskflow\.tests\.(?!.*test_examples\.ExamplesTestCase\.test_99_bottles.*)' | tee $$TEMP_REZ | subunit2pyunit ; \
|
|
cat $$TEMP_REZ | subunit-filter -s --no-passthrough | subunit-stats ; \
|
|
rm -f $$TEMP_REZ ; \
|
|
testr-python$$PYMAJOR slowest ; \
|
|
done
|
|
endif
|