[Python-apps-commits] r9743 - in packages (4 files)
jwilk at users.alioth.debian.org
jwilk at users.alioth.debian.org
Thu Jun 13 11:16:16 UTC 2013
Date: Thursday, June 13, 2013 @ 11:16:15
Author: jwilk
Revision: 9743
Run tests only if DEB_BUILD_OPTIONS=nocheck is not set.
Modified:
packages/txt2tags/trunk/debian/changelog
packages/txt2tags/trunk/debian/rules
packages/xtree/trunk/debian/changelog
packages/xtree/trunk/debian/rules
Modified: packages/txt2tags/trunk/debian/changelog
===================================================================
--- packages/txt2tags/trunk/debian/changelog 2013-06-12 11:26:55 UTC (rev 9742)
+++ packages/txt2tags/trunk/debian/changelog 2013-06-13 11:16:15 UTC (rev 9743)
@@ -1,8 +1,9 @@
txt2tags (2.6-4) UNRELEASED; urgency=low
* Use canonical URIs for Vcs-* fields.
+ * Run tests only if DEB_BUILD_OPTIONS=nocheck is not set.
- -- Jakub Wilk <jwilk at debian.org> Sun, 05 May 2013 18:10:33 +0200
+ -- Jakub Wilk <jwilk at debian.org> Thu, 13 Jun 2013 13:13:00 +0200
txt2tags (2.6-3) unstable; urgency=low
Modified: packages/txt2tags/trunk/debian/rules
===================================================================
--- packages/txt2tags/trunk/debian/rules 2013-06-12 11:26:55 UTC (rev 9742)
+++ packages/txt2tags/trunk/debian/rules 2013-06-13 11:16:15 UTC (rev 9743)
@@ -20,7 +20,9 @@
cd doc && $(MAKE) build
override_dh_auto_test:
+ifeq "$(filter nocheck,$(DEB_BUILD_OPTIONS))" ""
cd test && ./run.py
+endif
override_dh_install:
dh_install
Modified: packages/xtree/trunk/debian/changelog
===================================================================
--- packages/xtree/trunk/debian/changelog 2013-06-12 11:26:55 UTC (rev 9742)
+++ packages/xtree/trunk/debian/changelog 2013-06-13 11:16:15 UTC (rev 9743)
@@ -6,8 +6,9 @@
[ Jakub Wilk ]
* Use canonical URIs for Vcs-* fields.
+ * Run tests only if DEB_BUILD_OPTIONS=nocheck is not set.
- -- Jakub Wilk <jwilk at debian.org> Sun, 05 May 2013 18:10:39 +0200
+ -- Jakub Wilk <jwilk at debian.org> Thu, 13 Jun 2013 13:13:01 +0200
xtree (0.2-1) experimental; urgency=low
Modified: packages/xtree/trunk/debian/rules
===================================================================
--- packages/xtree/trunk/debian/rules 2013-06-12 11:26:55 UTC (rev 9742)
+++ packages/xtree/trunk/debian/rules 2013-06-13 11:16:15 UTC (rev 9743)
@@ -9,4 +9,6 @@
find debian/xtree -name "*.egg-info" -delete
override_dh_auto_test:
+ifeq "$(filter nocheck,$(DEB_BUILD_OPTIONS))" ""
python -m unittest discover -s tests
+endif
More information about the Python-apps-commits
mailing list