2009-08-19 21:45:01 +08:00
|
|
|
1.0.1: improved reporting, nose/unittest.py support, bug fixes
|
|
|
|
-----------------------------------------------------------------------
|
2009-08-19 02:02:52 +08:00
|
|
|
|
2009-08-20 00:25:11 +08:00
|
|
|
This is a bugfix release of pylib/py.test also coming with:
|
|
|
|
|
|
|
|
* improved documentation, improved navigation
|
|
|
|
* test failure reporting improvements
|
|
|
|
* support for directly running existing nose/unittest.py style tests
|
|
|
|
|
|
|
|
visit here for more info, including quickstart and tutorials:
|
2009-08-19 02:02:52 +08:00
|
|
|
|
2009-08-19 21:45:01 +08:00
|
|
|
http://pytest.org and http://pylib.org
|
2009-08-19 02:02:52 +08:00
|
|
|
|
2009-08-20 00:25:11 +08:00
|
|
|
|
|
|
|
Changelog 1.0.0 to 1.0.1
|
2009-08-19 02:02:52 +08:00
|
|
|
------------------------
|
|
|
|
|
2009-08-20 00:25:11 +08:00
|
|
|
* added a default 'pytest_nose' plugin which handles nose.SkipTest,
|
2009-08-19 02:02:52 +08:00
|
|
|
nose-style function/method/generator setup/teardown and
|
|
|
|
tries to report functions correctly.
|
|
|
|
|
2009-08-19 21:45:01 +08:00
|
|
|
* improved documentation, better navigation: see http://pytest.org
|
|
|
|
|
|
|
|
* added a "--help-config" option to show conftest.py / ENV-var names for
|
|
|
|
all longopt cmdline options, and some special conftest.py variables.
|
|
|
|
renamed 'conf_capture' conftest setting to 'option_capture' accordingly.
|
2009-08-19 02:02:52 +08:00
|
|
|
|
|
|
|
* unicode fixes: capturing and unicode writes to sys.stdout
|
|
|
|
(through e.g a print statement) now work within tests,
|
|
|
|
they are encoded as "utf8" by default, also terminalwriting
|
|
|
|
was adapted and somewhat unified between windows and linux
|
|
|
|
|
|
|
|
* fix issue #27: better reporting on non-collectable items given on commandline
|
|
|
|
(e.g. pyc files)
|
|
|
|
|
|
|
|
* fix issue #33: added --version flag (thanks Benjamin Peterson)
|
|
|
|
|
|
|
|
* fix issue #32: adding support for "incomplete" paths to wcpath.status()
|
|
|
|
|
|
|
|
* "Test" prefixed classes are *not* collected by default anymore if they
|
|
|
|
have an __init__ method
|
|
|
|
|
|
|
|
* monkeypatch setenv() now accepts a "prepend" parameter
|
|
|
|
|
|
|
|
* improved reporting of collection error tracebacks
|
|
|
|
|
|
|
|
* simplified multicall mechanism and plugin architecture,
|
|
|
|
renamed some internal methods and argnames
|