From 1bd4afee0b402b969eb6f3cdf59a3cede489800d Mon Sep 17 00:00:00 2001 From: hpk Date: Mon, 6 Oct 2008 21:50:35 +0200 Subject: [PATCH] [svn r58690] * add to TODO, changelog * regen setup --HG-- branch : trunk --- CHANGELOG | 5 ++++- MANIFEST | 18 +++++++++++++++--- TODO.txt | 5 +++++ setup.py | 7 +++++-- 4 files changed, 29 insertions(+), 6 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 6c2fe3615..ca8f6fa76 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,8 +1,11 @@ -$Id: CHANGELOG 58308 2008-09-21 15:15:28Z hpk $ +$Id: CHANGELOG 58690 2008-10-06 19:50:35Z hpk $ 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() diff --git a/MANIFEST b/MANIFEST index 0d5f08c6d..0db3cfb32 100644 --- a/MANIFEST +++ b/MANIFEST @@ -2,6 +2,7 @@ CHANGELOG LICENSE MANIFEST README.txt +TODO.txt ez_setup.py py/LICENSE py/__init__.py @@ -67,12 +68,14 @@ py/bin/py.cleanup 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/pycleanup.py 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_subprocess.py 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/difftime.py 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_api.py 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/path/testing/test_api.py 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/index.html 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_deprecated_api.py 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 diff --git a/TODO.txt b/TODO.txt index e2c1b4560..f6c48f263 100644 --- a/TODO.txt +++ b/TODO.txt @@ -4,6 +4,11 @@ Things to do for 1.0.0 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 diff --git a/setup.py b/setup.py index a0d8bf2df..096d2e966 100644 --- a/setup.py +++ b/setup.py @@ -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 @@ def main(): '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 @@ def main(): '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 @@ def main(): '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 @@ def main(): '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',