[Python-modules-commits] r20518 - in packages/cssutils/trunk/debian (rules)
cjsmo-guest at users.alioth.debian.org
cjsmo-guest at users.alioth.debian.org
Mon Feb 20 04:50:49 UTC 2012
Date: Monday, February 20, 2012 @ 04:50:22
Author: cjsmo-guest
Revision: 20518
refine nose excludes
Modified:
packages/cssutils/trunk/debian/rules
Modified: packages/cssutils/trunk/debian/rules
===================================================================
--- packages/cssutils/trunk/debian/rules 2012-02-19 22:10:39 UTC (rev 20517)
+++ packages/cssutils/trunk/debian/rules 2012-02-20 04:50:22 UTC (rev 20518)
@@ -19,18 +19,24 @@
override_dh_auto_test:
set -ex; \
for py in $(PYVERS); do \
- nosetests -v --ignore-files='test_cssutils.py' \
- --ignore-files='test_scripts_csscombine.py' \
- --ignore-files='test_cssvariablesdeclaration.py' \
- --exclude='getMetaInfo' \
- --where $(CURDIR)/build/lib.linux-*/tests; \
+ nosetests -v \
+ --exclude='test_parseString' \
+ --exclude='test_parseFile' \
+ --exclude='test_parseUrl' \
+ --exclude='test_combine' \
+ --exclude='test_cssText2' \
+ --exclude='test_getMetaInfo' \
+ --where $(CURDIR)/build/lib.linux-*/tests; \
done
set -ex; \
for py in $(PY3VERS); do \
- nosetests3 -v --ignore-files='test_cssutils.py' \
- --ignore-files='test_scripts_csscombine.py' \
- --ignore-files='test_cssvariablesdeclaration.py' \
- --py3where $(CURDIR)/build/lib/tests; \
+ nosetests3 -v \
+ --exclude='test_parseString' \
+ --exclude='test_parseFile' \
+ --exclude='test_parseUrl' \
+ --exclude='test_combine' \
+ --exclude='test_cssText2' \
+ --py3where $(CURDIR)/build/lib/tests; \
done
override_dh_auto_install:
More information about the Python-modules-commits
mailing list