[Python-modules-commits] r20433 - in packages/sphinx/trunk/debian (changelog rules)
jwilk at users.alioth.debian.org
jwilk at users.alioth.debian.org
Mon Feb 13 14:21:43 UTC 2012
Date: Monday, February 13, 2012 @ 14:21:42
Author: jwilk
Revision: 20433
Set LC_ALL=C.UTF-8 when running Python 3 tests to work around failures under LC_ALL=C.
Modified:
packages/sphinx/trunk/debian/changelog
packages/sphinx/trunk/debian/rules
Modified: packages/sphinx/trunk/debian/changelog
===================================================================
--- packages/sphinx/trunk/debian/changelog 2012-02-13 14:19:42 UTC (rev 20432)
+++ packages/sphinx/trunk/debian/changelog 2012-02-13 14:21:42 UTC (rev 20433)
@@ -16,9 +16,11 @@
+ Add python3_test_build_dir.diff to hardcode Python 3 build directory in
the test runner to the one that the package uses.
+ Add test running code debian/rules. Don't use --no-skip for the moment,
- as some required packages don't exist yet (see #647441, #647439).
+ as some required packages don't exist yet (see #647441, #647439). Set
+ LC_ALL=C.UTF-8 to work around failures under LC_ALL=C (see
+ <http://deb.li/H8ED> and <http://deb.li/3Rw0z>).
- -- Jakub Wilk <jwilk at debian.org> Sun, 12 Feb 2012 23:43:56 +0100
+ -- Jakub Wilk <jwilk at debian.org> Mon, 13 Feb 2012 13:58:21 +0100
sphinx (1.1.2+dfsg-4) unstable; urgency=low
Modified: packages/sphinx/trunk/debian/rules
===================================================================
--- packages/sphinx/trunk/debian/rules 2012-02-13 14:19:42 UTC (rev 20432)
+++ packages/sphinx/trunk/debian/rules 2012-02-13 14:21:42 UTC (rev 20433)
@@ -37,7 +37,7 @@
python3 setup.py build --build-lib build/py3/
ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
$(python_all) tests/run.py --verbose --no-skip
- $(python3_all) tests/run.py --verbose
+ export LC_ALL=C.UTF-8 && $(python3_all) tests/run.py --verbose
xvfb-run ./debian/jstest/run-tests
endif
touch build-stamp
More information about the Python-modules-commits
mailing list