[py-svn] r43299 - py/trunk/py

fijal at codespeak.net fijal at codespeak.net
Sat May 12 16:53:26 CEST 2007


Author: fijal
Date: Sat May 12 16:53:25 2007
New Revision: 43299

Modified:
   py/trunk/py/__init__.py
Log:
Be more keyword-friendly for cheesshop


Modified: py/trunk/py/__init__.py
==============================================================================
--- py/trunk/py/__init__.py	(original)
+++ py/trunk/py/__init__.py	Sat May 12 16:53:25 2007
@@ -10,7 +10,7 @@
 version = "0.9.1-alpha"
 
 initpkg(__name__,
-    description = "py lib: agile development and test support library",
+    description = "pylib and py.test: agile development and test support library",
     revision = int('$LastChangedRevision$'.split(':')[1][:-1]),
     lastchangedate = '$LastChangedDate$',
     version = version, 
@@ -31,6 +31,7 @@
     'test.skip'              : ('./test/item.py', 'skip'),
     'test.fail'              : ('./test/item.py', 'fail'),
     'test.exit'              : ('./test/session.py', 'exit'),
+    'test.pdb'               : ('./test/pdbplus.py', 'start_pdb'),
 
     # configuration/initialization related test api
     'test.config'            : ('./test/config.py', 'config_per_process'),



More information about the pytest-commit mailing list