[Python-modules-commits] r31785 - in packages/python-gitdb/trunk/debian (changelog rules)
yoh at users.alioth.debian.org
yoh at users.alioth.debian.org
Fri Feb 6 03:08:31 UTC 2015
Date: Friday, February 6, 2015 @ 03:08:31
Author: yoh
Revision: 31785
do not ignore failed tests so we could troubleshoot, and use seq for loop of 400
Modified:
packages/python-gitdb/trunk/debian/changelog
packages/python-gitdb/trunk/debian/rules
Modified: packages/python-gitdb/trunk/debian/changelog
===================================================================
--- packages/python-gitdb/trunk/debian/changelog 2015-02-06 03:08:24 UTC (rev 31784)
+++ packages/python-gitdb/trunk/debian/changelog 2015-02-06 03:08:31 UTC (rev 31785)
@@ -1,6 +1,8 @@
python-gitdb (0.6.4-1) experimental; urgency=medium
* New upstream release addressing failing tests on some platforms
+ * debian/rules
+ - don't ignore failed tests
-- Yaroslav Halchenko <debian at onerussian.com> Thu, 05 Feb 2015 18:27:18 -0500
Modified: packages/python-gitdb/trunk/debian/rules
===================================================================
--- packages/python-gitdb/trunk/debian/rules 2015-02-06 03:08:24 UTC (rev 31784)
+++ packages/python-gitdb/trunk/debian/rules 2015-02-06 03:08:31 UTC (rev 31785)
@@ -18,7 +18,7 @@
git init; \
git config user.name "TESTING"; \
git config user.email "TESTING at example.com"; \
- for c in {1..400}; do echo $$c >| $$c; git add $$c; git commit -m "commit $$c" > /dev/null; done; git gc
+ for c in `seq 400`; do echo $$c >| $$c; git add $$c; git commit -m "commit $$c" > /dev/null; done; git gc
GITDB_TEST_GIT_REPO_BASE=$(CURDIR)/TESTGITDB/.git \
- nosetests -s -v gitdb/test || echo "Tests failed but continuing..."
+ nosetests -s -v gitdb/test
rm -rf TESTGITDB
More information about the Python-modules-commits
mailing list