add changelog for warning system, bump internal version

This commit is contained in:
holger krekel 2014-03-14 08:15:38 +01:00
parent ebd10aa6b4
commit cfd43a9b02
3 changed files with 15 additions and 2 deletions

View File

@ -1,3 +1,16 @@
NEXT (2.6)
-----------------------------------
- internal new warning system: pytest will now produce warnings when
it detects oddities in your test collection or execution.
Warnings are ultimately sent to a new pytest_logwarning hook which is
currently only implemented by the terminal plugin which displays
warnings in the summary line and shows more details when -rw (report on
warnings) is specified.
- change skips into warnings for test classes with an __init__ and
callables in test modules which look like a test but are not functions.
2.5.2
-----------------------------------

View File

@ -1,2 +1,2 @@
#
__version__ = '2.5.2'
__version__ = '2.5.3.dev1'

View File

@ -27,7 +27,7 @@ def main():
name='pytest',
description='pytest: simple powerful testing with Python',
long_description = long_description,
version='2.5.2',
version='2.5.3.dev1',
url='http://pytest.org',
license='MIT license',
platforms=['unix', 'linux', 'osx', 'cygwin', 'win32'],