add changelog for warning system, bump internal version
This commit is contained in:
parent
ebd10aa6b4
commit
cfd43a9b02
13
CHANGELOG
13
CHANGELOG
|
@ -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
|
2.5.2
|
||||||
-----------------------------------
|
-----------------------------------
|
||||||
|
|
||||||
|
|
|
@ -1,2 +1,2 @@
|
||||||
#
|
#
|
||||||
__version__ = '2.5.2'
|
__version__ = '2.5.3.dev1'
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -27,7 +27,7 @@ def main():
|
||||||
name='pytest',
|
name='pytest',
|
||||||
description='pytest: simple powerful testing with Python',
|
description='pytest: simple powerful testing with Python',
|
||||||
long_description = long_description,
|
long_description = long_description,
|
||||||
version='2.5.2',
|
version='2.5.3.dev1',
|
||||||
url='http://pytest.org',
|
url='http://pytest.org',
|
||||||
license='MIT license',
|
license='MIT license',
|
||||||
platforms=['unix', 'linux', 'osx', 'cygwin', 'win32'],
|
platforms=['unix', 'linux', 'osx', 'cygwin', 'win32'],
|
||||||
|
|
Loading…
Reference in New Issue