[Pytest-commit] commit/pytest: hpk42: add changelog for warning system, bump internal version

commits-noreply at bitbucket.org commits-noreply at bitbucket.org
Fri Mar 14 08:15:52 CET 2014


1 new commit in pytest:

https://bitbucket.org/hpk42/pytest/commits/52e080dd60ed/
Changeset:   52e080dd60ed
User:        hpk42
Date:        2014-03-14 08:15:38
Summary:     add changelog for warning system, bump internal version
Affected #:  3 files

diff -r e18da321354757558ffd286a07e94d2b1cd42b18 -r 52e080dd60eda8dcf4732baebebebb79160d14ff CHANGELOG
--- a/CHANGELOG
+++ b/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
 -----------------------------------
 

diff -r e18da321354757558ffd286a07e94d2b1cd42b18 -r 52e080dd60eda8dcf4732baebebebb79160d14ff _pytest/__init__.py
--- a/_pytest/__init__.py
+++ b/_pytest/__init__.py
@@ -1,2 +1,2 @@
 #
-__version__ = '2.5.2'
+__version__ = '2.5.3.dev1'

diff -r e18da321354757558ffd286a07e94d2b1cd42b18 -r 52e080dd60eda8dcf4732baebebebb79160d14ff setup.py
--- a/setup.py
+++ b/setup.py
@@ -27,7 +27,7 @@
         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'],

Repository URL: https://bitbucket.org/hpk42/pytest/

--

This is a commit notification from bitbucket.org. You are receiving
this because you have the service enabled, addressing the recipient of
this email.


More information about the pytest-commit mailing list