[Python-apps-commits] r14575 - in packages/pylint/trunk/debian (changelog rules)
morph at users.alioth.debian.org
morph at users.alioth.debian.org
Sun Jan 21 22:16:18 UTC 2018
Date: Sunday, January 21, 2018 @ 22:16:15
Author: morph
Revision: 14575
* debian/rules
- dont fail if tests fail
Modified:
packages/pylint/trunk/debian/changelog
packages/pylint/trunk/debian/rules
Modified: packages/pylint/trunk/debian/changelog
===================================================================
--- packages/pylint/trunk/debian/changelog 2018-01-16 15:05:34 UTC (rev 14574)
+++ packages/pylint/trunk/debian/changelog 2018-01-21 22:16:15 UTC (rev 14575)
@@ -5,8 +5,10 @@
- auto-generate updated upstream copyright notices
* debian/patches/reproducible_build.patch
- drop, merged upstream
+ * debian/rules
+ - dont fail if tests fail
- -- Sandro Tosi <morph at debian.org> Mon, 01 Jan 2018 14:27:18 -0500
+ -- Sandro Tosi <morph at debian.org> Sun, 21 Jan 2018 17:15:59 -0500
pylint (1.7.4-2) unstable; urgency=medium
Modified: packages/pylint/trunk/debian/rules
===================================================================
--- packages/pylint/trunk/debian/rules 2018-01-16 15:05:34 UTC (rev 14574)
+++ packages/pylint/trunk/debian/rules 2018-01-21 22:16:15 UTC (rev 14575)
@@ -24,7 +24,7 @@
override_dh_auto_test:
ifeq (,$(findstring nocheck,$(DEB_BUILD_OPTIONS)))
- set -e; for python in $(PYTHON2) $(PYTHON3) ; do \
+ -for python in $(PYTHON2) $(PYTHON3) ; do \
LIB=$$($$python -c "from distutils.command.build import build ; from distutils.core import Distribution ; b = build(Distribution()) ; b.finalize_options() ; print(b.build_purelib)") ; \
PYTHONPATH=$(CURDIR)/$$LIB $$python setup.py pytest --addopts "-k 'not test_good_comprehension_checks'" ; \
done
More information about the Python-apps-commits
mailing list