~crunch.io/ubuntu/precise/codespeak-lib/unstable

« back to all changes in this revision

Viewing changes to doc/announce/release-1.0.1.txt

  • Committer: Bazaar Package Importer
  • Author(s): Chris Lamb
  • Date: 2010-08-01 16:24:01 UTC
  • mfrom: (1.1.8 upstream)
  • Revision ID: james.westby@ubuntu.com-20100801162401-g37v49d1p148alpm
Tags: 1.3.3-1
* New upstream release.
* Bump Standards-Version to 3.9.1.
* Fix typo in py.test manpage.
* Prefer Breaks: over Conflicts.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
1.0.1: improved reporting, nose/unittest.py support, bug fixes
2
2
-----------------------------------------------------------------------
3
3
 
4
 
This is a bugfix release of pylib/py.test also coming with: 
 
4
This is a bugfix release of pylib/py.test also coming with:
5
5
 
6
 
* improved documentation, improved navigation 
 
6
* improved documentation, improved navigation
7
7
* test failure reporting improvements
8
8
* support for directly running existing nose/unittest.py style tests
9
9
 
10
 
visit here for more info, including quickstart and tutorials: 
 
10
visit here for more info, including quickstart and tutorials:
11
11
 
12
12
    http://pytest.org and http://pylib.org
13
13
 
14
14
 
15
 
Changelog 1.0.0 to 1.0.1 
 
15
Changelog 1.0.0 to 1.0.1
16
16
------------------------
17
17
 
18
 
* added a default 'pytest_nose' plugin which handles nose.SkipTest, 
19
 
  nose-style function/method/generator setup/teardown and 
20
 
  tries to report functions correctly.  
 
18
* added a default 'pytest_nose' plugin which handles nose.SkipTest,
 
19
  nose-style function/method/generator setup/teardown and
 
20
  tries to report functions correctly.
21
21
 
22
 
* improved documentation, better navigation: see http://pytest.org 
 
22
* improved documentation, better navigation: see http://pytest.org
23
23
 
24
24
* added a "--help-config" option to show conftest.py / ENV-var names for
25
 
  all longopt cmdline options, and some special conftest.py variables. 
26
 
  renamed 'conf_capture' conftest setting to 'option_capture' accordingly. 
27
 
 
28
 
* unicode fixes: capturing and unicode writes to sys.stdout 
29
 
  (through e.g a print statement) now work within tests, 
30
 
  they are encoded as "utf8" by default, also terminalwriting 
31
 
  was adapted and somewhat unified between windows and linux 
32
 
 
33
 
* fix issue #27: better reporting on non-collectable items given on commandline 
 
25
  all longopt cmdline options, and some special conftest.py variables.
 
26
  renamed 'conf_capture' conftest setting to 'option_capture' accordingly.
 
27
 
 
28
* unicode fixes: capturing and unicode writes to sys.stdout
 
29
  (through e.g a print statement) now work within tests,
 
30
  they are encoded as "utf8" by default, also terminalwriting
 
31
  was adapted and somewhat unified between windows and linux
 
32
 
 
33
* fix issue #27: better reporting on non-collectable items given on commandline
34
34
  (e.g. pyc files)
35
35
 
36
 
* fix issue #33: added --version flag (thanks Benjamin Peterson) 
 
36
* fix issue #33: added --version flag (thanks Benjamin Peterson)
37
37
 
38
38
* fix issue #32: adding support for "incomplete" paths to wcpath.status()
39
39
 
40
 
* "Test" prefixed classes are *not* collected by default anymore if they 
41
 
  have an __init__ method 
 
40
* "Test" prefixed classes are *not* collected by default anymore if they
 
41
  have an __init__ method
42
42
 
43
43
* monkeypatch setenv() now accepts a "prepend" parameter
44
44
 
45
45
* improved reporting of collection error tracebacks
46
46
 
47
 
* simplified multicall mechanism and plugin architecture, 
48
 
  renamed some internal methods and argnames 
 
47
* simplified multicall mechanism and plugin architecture,
 
48
  renamed some internal methods and argnames