X-Git-Url: https://review.fuel-infra.org/gitweb?a=blobdiff_plain;f=trusty%2Fdebian%2Frules;h=a3a99ccab6c553cfe308dfd106b04b582c714b37;hb=1718b507e9ffce450567848c96b0fedf7da24171;hp=4160383249d230c5baaa943c669b157672e3467c;hpb=b052ed63cb959834d7dec02a10ae7f70f0b6fa2b;p=openstack-build%2Fceilometer-build.git diff --git a/trusty/debian/rules b/trusty/debian/rules index 4160383..a3a99cc 100755 --- a/trusty/debian/rules +++ b/trusty/debian/rules @@ -4,22 +4,26 @@ include /usr/share/openstack-pkg-tools/pkgos.make +export OSLO_PACKAGE_VERSION=$(VERSION) + %: dh $@ --with python2 override_dh_clean: dh_clean rm -rf ceilometer.egg-info - rm -f debian/ceilometer-common.postinst debian/ceilometer-api.config debian/ceilometer-api.postinst + rm -f debian/ceilometer-common.config debian/ceilometer-common.postinst debian/ceilometer-api.config debian/ceilometer-api.postinst override_dh_install: dh_install install -D -m 0644 $(CURDIR)/etc/ceilometer/ceilometer.conf.sample $(CURDIR)/debian/ceilometer-common/usr/share/ceilometer-common/ceilometer.conf install -D -m 0644 $(CURDIR)/etc/ceilometer/policy.json $(CURDIR)/debian/ceilometer-common/usr/share/ceilometer-common/policy.json install -D -m 0644 $(CURDIR)/etc/ceilometer/sources.json $(CURDIR)/debian/ceilometer-common/usr/share/ceilometer-common/sources.json + install -D -m 0644 $(CURDIR)/etc/ceilometer/pipeline.yaml $(CURDIR)/debian/ceilometer-common/usr/share/ceilometer-common/pipeline.yaml override_dh_auto_build: dh_auto_build + /usr/share/openstack-pkg-tools/pkgos_insert_include pkgos_func ceilometer-common.config /usr/share/openstack-pkg-tools/pkgos_insert_include pkgos_func ceilometer-common.postinst /usr/share/openstack-pkg-tools/pkgos_insert_include pkgos_func ceilometer-api.config /usr/share/openstack-pkg-tools/pkgos_insert_include pkgos_func ceilometer-api.postinst @@ -29,3 +33,13 @@ override_dh_auto_clean: rm -rf debian/*.upstart rm -rf debian/ceilometer-common.postinst find . -iname '*.pyc' -delete + +override_dh_auto_test: +ifeq (,$(findstring nocheck, $(DEB_BUILD_OPTIONS))) + set -e && TEMP_REZ=`mktemp -t` && \ + bash -x ./setup-test-env.sh python setup.py testr --slowest --testr-args='--subunit --omit=test_bin.py ' | tee $$TEMP_REZ | subunit2pyunit || true ; \ + cat $$TEMP_REZ | subunit-filter -s --no-passthrough | subunit-stats || true ; \ + rm -f $$TEMP_REZ + #./run-tests.sh || true + #PYTHONPATH=. nosetests -P || true +endif