[py-svn] r58690 - py/trunk

hpk at codespeak.net hpk at codespeak.net
Mon Oct 6 21:50:36 CEST 2008


Author: hpk
Date: Mon Oct  6 21:50:35 2008
New Revision: 58690

Modified:
   py/trunk/CHANGELOG
   py/trunk/MANIFEST
   py/trunk/TODO.txt
   py/trunk/setup.py
Log:
* add to TODO, changelog 
* regen setup


Modified: py/trunk/CHANGELOG
==============================================================================
--- py/trunk/CHANGELOG	(original)
+++ py/trunk/CHANGELOG	Mon Oct  6 21:50:35 2008
@@ -3,6 +3,9 @@
 Changes between 0.9.2 and 1.0 (UNRELEASED)
 =============================================
 
+* teardown_method is now guaranteed to get 
+  called after a test method has run. 
+ 
 * new method: py.test.importorskip(mod,minversion)
   will either import or call py.test.skip()
 

Modified: py/trunk/MANIFEST
==============================================================================
--- py/trunk/MANIFEST	(original)
+++ py/trunk/MANIFEST	Mon Oct  6 21:50:35 2008
@@ -2,6 +2,7 @@
 LICENSE
 MANIFEST
 README.txt
+TODO.txt
 ez_setup.py
 py/LICENSE
 py/__init__.py
@@ -67,12 +68,14 @@
 py/bin/py.countloc
 py/bin/py.lookup
 py/bin/py.rest
+py/bin/py.svnwcrevert
 py/bin/py.test
 py/bin/py.which
 py/bin/win32/py.cleanup.cmd
 py/bin/win32/py.countloc.cmd
 py/bin/win32/py.lookup.cmd
 py/bin/win32/py.rest.cmd
+py/bin/win32/py.svnwcrevert.cmd
 py/bin/win32/py.test.cmd
 py/bin/win32/py.which.cmd
 py/builtin/__init__.py
@@ -112,6 +115,7 @@
 py/cmdline/pycountloc.py
 py/cmdline/pylookup.py
 py/cmdline/pyrest.py
+py/cmdline/pysvnwcrevert.py
 py/cmdline/pytest.py
 py/cmdline/pywhich.py
 py/cmdline/testing/__init__.py
@@ -146,7 +150,6 @@
 py/compat/testing/test_textwrap.py
 py/compat/textwrap.py
 py/conftest.py
-py/doc/TODO.txt
 py/doc/__init__.py
 py/doc/apigen.txt
 py/doc/apigen_refactorings.txt
@@ -246,7 +249,6 @@
 py/misc/dynpkg.py
 py/misc/error.py
 py/misc/findmissingdocstrings.py
-py/misc/killproc.py
 py/misc/rest.py
 py/misc/std.py
 py/misc/svnlook.py
@@ -257,10 +259,11 @@
 py/misc/testing/test_cache.py
 py/misc/testing/test_error.py
 py/misc/testing/test_initpkg.py
-py/misc/testing/test_oskill.py
 py/misc/testing/test_std.py
 py/misc/testing/test_svnlook.py
 py/misc/testing/test_terminal.py
+py/misc/testing/test_warn.py
+py/misc/warn.py
 py/path/__init__.py
 py/path/common.py
 py/path/gateway/TODO.txt
@@ -297,9 +300,11 @@
 py/process/__init__.py
 py/process/cmdexec.py
 py/process/forkedfunc.py
+py/process/killproc.py
 py/process/testing/__init__.py
 py/process/testing/test_cmdexec.py
 py/process/testing/test_forkedfunc.py
+py/process/testing/test_killproc.py
 py/rest/__init__.py
 py/rest/convert.py
 py/rest/directive.py
@@ -369,6 +374,7 @@
 py/test/report/webdata/json.py
 py/test/report/webdata/source.js
 py/test/report/webjs.py
+py/test/resultlog.py
 py/test/runner.py
 py/test/session.py
 py/test/testing/__init__.py
@@ -387,9 +393,15 @@
 py/test/testing/test_doctest.py
 py/test/testing/test_event.py
 py/test/testing/test_outcome.py
+py/test/testing/test_recording.py
+py/test/testing/test_resultlog.py
 py/test/testing/test_runner_functional.py
 py/test/testing/test_session.py
 py/test/testing/test_setup_nested.py
+py/test/web/__init__.py
+py/test/web/exception.py
+py/test/web/post_multipart.py
+py/test/web/webcheck.py
 py/thread/__init__.py
 py/thread/io.py
 py/thread/pool.py

Modified: py/trunk/TODO.txt
==============================================================================
--- py/trunk/TODO.txt	(original)
+++ py/trunk/TODO.txt	Mon Oct  6 21:50:35 2008
@@ -4,6 +4,11 @@
 py.test 
 --------------
 
+- compatilibity: honour item.run() method of test items (so far
+  probably only execute() is warned about)
+
+- turn deprecation / apiwarnings into events, report them at the end? 
+
 - get APIGEN back to work 
 
 - get web reporter back to work 

Modified: py/trunk/setup.py
==============================================================================
--- py/trunk/setup.py	(original)
+++ py/trunk/setup.py	Mon Oct  6 21:50:35 2008
@@ -1,7 +1,7 @@
 """
     setup file for 'py' package based on:
 
-        svn+ssh://codespeak.net/svn/py/trunk, revision=57745
+        https://codespeak.net/svn/py/trunk, revision=58363
 
     autogenerated by gensetup.py
 """
@@ -52,6 +52,7 @@
                                           'py.countloc = py.cmdline:pycountloc',
                                           'py.lookup = py.cmdline:pylookup',
                                           'py.rest = py.cmdline:pyrest',
+                                          'py.svnwcrevert = py.cmdline:pysvnwcrevert',
                                           'py.test = py.cmdline:pytest',
                                           'py.which = py.cmdline:pywhich']},
         classifiers=['Development Status :: 4 - Beta',
@@ -120,6 +121,7 @@
                   'py.test.report.webdata',
                   'py.test.testing',
                   'py.test.testing.import_test.package',
+                  'py.test.web',
                   'py.thread',
                   'py.thread.testing',
                   'py.tool',
@@ -140,12 +142,14 @@
                              'bin/py.countloc',
                              'bin/py.lookup',
                              'bin/py.rest',
+                             'bin/py.svnwcrevert',
                              'bin/py.test',
                              'bin/py.which',
                              'bin/win32/py.cleanup.cmd',
                              'bin/win32/py.countloc.cmd',
                              'bin/win32/py.lookup.cmd',
                              'bin/win32/py.rest.cmd',
+                             'bin/win32/py.svnwcrevert.cmd',
                              'bin/win32/py.test.cmd',
                              'bin/win32/py.which.cmd',
                              'c-extension/greenlet/README.txt',
@@ -170,7 +174,6 @@
                              'compat/LICENSE',
                              'compat/testing/test_doctest.txt',
                              'compat/testing/test_doctest2.txt',
-                             'doc/TODO.txt',
                              'doc/apigen.txt',
                              'doc/apigen_refactorings.txt',
                              'doc/bin.txt',



More information about the pytest-commit mailing list