From f9720a38fe0ae741937a1b4ca7de8b9552bc11a7 Mon Sep 17 00:00:00 2001 From: holger krekel Date: Sun, 23 Jun 2013 09:24:48 +0200 Subject: [PATCH] mention added support for setUpModule/tearDownModule detection, thanks Brian Okken. --- AUTHORS | 1 + CHANGELOG | 2 ++ _pytest/__init__.py | 2 +- setup.py | 2 +- 4 files changed, 5 insertions(+), 2 deletions(-) diff --git a/AUTHORS b/AUTHORS index 8dfc8e58e..0ac43650a 100644 --- a/AUTHORS +++ b/AUTHORS @@ -30,3 +30,4 @@ Christian Tismer Daniel Nuri Graham Horler Andreas Zeidler +Brian Okken diff --git a/CHANGELOG b/CHANGELOG index ccffa39cb..155f6fffa 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,6 +1,8 @@ Changes between 2.3.5 and 2.4.DEV ----------------------------------- +- add support for setUpModule/tearDownModule detection, thanks Brian Okken. + - make sessionfinish hooks execute with the same cwd-context as at session start (helps fix plugin behaviour which write output files with relative path such as pytest-cov) diff --git a/_pytest/__init__.py b/_pytest/__init__.py index a5d89a853..654c9a59a 100644 --- a/_pytest/__init__.py +++ b/_pytest/__init__.py @@ -1,2 +1,2 @@ # -__version__ = '2.4.0.dev3' +__version__ = '2.4.0.dev4' diff --git a/setup.py b/setup.py index 538d267ce..d8b32746b 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ def main(): name='pytest', description='py.test: simple powerful testing with Python', long_description = long_description, - version='2.4.0.dev3', + version='2.4.0.dev4', url='http://pytest.org', license='MIT license', platforms=['unix', 'linux', 'osx', 'cygwin', 'win32'],