[svn r58690] * add to TODO, changelog

* regen setup

--HG--
branch : trunk
This commit is contained in:
hpk 2008-10-06 21:50:35 +02:00
parent 4b1c2eec3b
commit 1bd4afee0b
4 changed files with 29 additions and 6 deletions

View File

@ -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()

View File

@ -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

View File

@ -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

View File

@ -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',