[Python-modules-commits] r34411 - in packages/python-networkx/trunk/debian (changelog rules)
zigo at users.alioth.debian.org
zigo at users.alioth.debian.org
Tue Sep 29 11:00:14 UTC 2015
Date: Tuesday, September 29, 2015 @ 11:00:13
Author: zigo
Revision: 34411
Exclude tests which are doing internet access and failing.
Modified:
packages/python-networkx/trunk/debian/changelog
packages/python-networkx/trunk/debian/rules
Modified: packages/python-networkx/trunk/debian/changelog
===================================================================
--- packages/python-networkx/trunk/debian/changelog 2015-09-29 11:00:04 UTC (rev 34410)
+++ packages/python-networkx/trunk/debian/changelog 2015-09-29 11:00:13 UTC (rev 34411)
@@ -10,6 +10,7 @@
* Removed now useless python-3.4.patch patch from Chuck Short.
* Removed do-not-use-sphinx_rtd_theme.patch patch. Build-Depends on the
python-sphinx-rtd-theme package instead.
+ * Exclude tests which are doing internet access and failing.
-- Thomas Goirand <zigo at debian.org> Wed, 02 Sep 2015 13:17:15 +0000
Modified: packages/python-networkx/trunk/debian/rules
===================================================================
--- packages/python-networkx/trunk/debian/rules 2015-09-29 11:00:04 UTC (rev 34410)
+++ packages/python-networkx/trunk/debian/rules 2015-09-29 11:00:13 UTC (rev 34411)
@@ -26,12 +26,12 @@
set -e ; \
# running tests
for py in $(PYTHON2) ; do\
- PYTHONPATH=$(LIB2) $$py setup.py nosetests ; \
+ PYTHONPATH=$(LIB2) $$py setup.py nosetests -v --exclude='networkx\.drawing\.nx_agraph.*' ; \
done
set -e ; \
# running tests Python 3
for py in $(PYTHON3) ; do\
- PYTHONPATH=$(LIB3) $$py setup.py nosetests ; \
+ PYTHONPATH=$(LIB3) $$py setup.py nosetests -v --exclude='networkx\.drawing\.nx_agraph.*' ; \
done
endif
More information about the Python-modules-commits
mailing list