[Checkins] SVN: gocept.selenium/trunk/ Spell test selection positively (select) instead of negatively (ignore everything else)

Wolfgang Schnerring wosc at wosc.de
Mon Dec 27 05:41:48 EST 2010


Log message for revision 119157:
  Spell test selection positively (select) instead of negatively (ignore everything else)
  

Changed:
  U   gocept.selenium/trunk/grok.cfg
  U   gocept.selenium/trunk/plone.cfg
  U   gocept.selenium/trunk/plonetesting-plone3.cfg
  U   gocept.selenium/trunk/plonetesting-plone4.cfg
  U   gocept.selenium/trunk/static.cfg
  U   gocept.selenium/trunk/wsgi.cfg
  U   gocept.selenium/trunk/zope2.cfg
  U   gocept.selenium/trunk/zope212.cfg
  U   gocept.selenium/trunk/ztk.cfg

-=-
Modified: gocept.selenium/trunk/grok.cfg
===================================================================
--- gocept.selenium/trunk/grok.cfg	2010-12-27 10:27:38 UTC (rev 119156)
+++ gocept.selenium/trunk/grok.cfg	2010-12-27 10:41:47 UTC (rev 119157)
@@ -4,4 +4,4 @@
 flavour = [grok, test_grok]
 
 [test]
-defaults = ['--ignore_dir', 'wsgi', '--ignore_dir', 'ztk', '--ignore_dir', 'zope2', '--ignore_dir', 'plone', '--ignore_dir', 'static', '-v', '--auto-color']
+defaults = ['-s', 'gocept.selenium.grok']

Modified: gocept.selenium/trunk/plone.cfg
===================================================================
--- gocept.selenium/trunk/plone.cfg	2010-12-27 10:27:38 UTC (rev 119156)
+++ gocept.selenium/trunk/plone.cfg	2010-12-27 10:41:47 UTC (rev 119157)
@@ -11,5 +11,5 @@
 [test]
 recipe = collective.recipe.z2testrunner
 zope2part = instance
-defaults = --ignore_dir=ztk --ignore_dir=zope2 --ignore_dir=static --ignore_dir=plonetesting --tests-pattern=plone3
-packages = ${buildout:package}
+defaults = test --tests-pattern=test_
+packages = gocept.selenium.plone.tests.plone3

Modified: gocept.selenium/trunk/plonetesting-plone3.cfg
===================================================================
--- gocept.selenium/trunk/plonetesting-plone3.cfg	2010-12-27 10:27:38 UTC (rev 119156)
+++ gocept.selenium/trunk/plonetesting-plone3.cfg	2010-12-27 10:41:47 UTC (rev 119157)
@@ -11,5 +11,6 @@
 plone.app.testing = 3.0a1
 
 [test]
-defaults = ["--ignore_dir=zope2", "--tests-pattern=plone3", "--dir=gocept.selenium.plonetesting"]
+defaults = ['-s', 'gocept.selenium.plonetesting.tests.plone3',
+            '--tests-pattern', 'test_']
 extra-paths = ${zope2:location}/lib/python

Modified: gocept.selenium/trunk/plonetesting-plone4.cfg
===================================================================
--- gocept.selenium/trunk/plonetesting-plone4.cfg	2010-12-27 10:27:38 UTC (rev 119156)
+++ gocept.selenium/trunk/plonetesting-plone4.cfg	2010-12-27 10:41:47 UTC (rev 119157)
@@ -8,4 +8,6 @@
 plone.app.testing = 4.0a3
 
 [test]
-defaults = ["--ignore_dir=zope2", "--tests-pattern=plone4", "--dir=gocept.selenium.plonetesting"]
+defaults = ['-s', 'gocept.selenium.plonetesting.tests.plone4',
+            '--tests-pattern', 'test_']
+

Modified: gocept.selenium/trunk/static.cfg
===================================================================
--- gocept.selenium/trunk/static.cfg	2010-12-27 10:27:38 UTC (rev 119156)
+++ gocept.selenium/trunk/static.cfg	2010-12-27 10:41:47 UTC (rev 119157)
@@ -3,4 +3,4 @@
           http://svn.zope.org/repos/main/zopetoolkit/trunk/ztk.cfg
 
 [test]
-defaults = ['--ignore_dir', 'wsgi','--ignore_dir', 'grok',  '--ignore_dir', 'zope2', '--ignore_dir', 'plone', '--ignore_dir', 'ztk', '-v', '--auto-color']
+defaults = ['-s', 'gocept.selenium.static']

Modified: gocept.selenium/trunk/wsgi.cfg
===================================================================
--- gocept.selenium/trunk/wsgi.cfg	2010-12-27 10:27:38 UTC (rev 119156)
+++ gocept.selenium/trunk/wsgi.cfg	2010-12-27 10:41:47 UTC (rev 119157)
@@ -2,4 +2,4 @@
 extends = common.cfg
 
 [test]
-defaults = ['--ignore_dir', 'grok', '--ignore_dir', 'ztk', '--ignore_dir', 'zope2', '--ignore_dir', 'plone', '--ignore_dir', 'static', '-v', '--auto-color']
+defaults = ['-s', 'gocept.selenium.wsgi']

Modified: gocept.selenium/trunk/zope2.cfg
===================================================================
--- gocept.selenium/trunk/zope2.cfg	2010-12-27 10:27:38 UTC (rev 119156)
+++ gocept.selenium/trunk/zope2.cfg	2010-12-27 10:41:47 UTC (rev 119157)
@@ -5,5 +5,5 @@
 [test]
 recipe = collective.recipe.z2testrunner
 zope2part = instance
-defaults = test --ignore_dir=ztk --ignore_dir=plone --ignore_dir=static --tests-pattern=zope210
-packages = ${buildout:package}
+defaults = test --tests-pattern=test_
+packages = gocept.selenium.zope2.tests.zope210

Modified: gocept.selenium/trunk/zope212.cfg
===================================================================
--- gocept.selenium/trunk/zope212.cfg	2010-12-27 10:27:38 UTC (rev 119156)
+++ gocept.selenium/trunk/zope212.cfg	2010-12-27 10:41:47 UTC (rev 119157)
@@ -4,4 +4,5 @@
 flavour = [zope2]
 
 [test]
-defaults = ["--ignore_dir=ztk", "--ignore_dir=plone",  "--ignore_dir=static", "--tests-pattern=zope212"]
+defaults = ['-s', 'gocept.selenium.zope2.tests.zope212',
+            '--tests-pattern', 'test_']

Modified: gocept.selenium/trunk/ztk.cfg
===================================================================
--- gocept.selenium/trunk/ztk.cfg	2010-12-27 10:27:38 UTC (rev 119156)
+++ gocept.selenium/trunk/ztk.cfg	2010-12-27 10:41:47 UTC (rev 119157)
@@ -5,4 +5,4 @@
 flavour = [ztk, test_ztk]
 
 [test]
-defaults = ['--ignore_dir', 'grok', '--ignore_dir', 'wsgi', '--ignore_dir', 'zope2', '--ignore_dir', 'plone', '--ignore_dir', 'static', '-v', '--auto-color']
+defaults = ['-s', 'gocept.selenium.ztk']



More information about the checkins mailing list