mention added support for setUpModule/tearDownModule detection, thanks Brian Okken.

This commit is contained in:
holger krekel 2013-06-23 09:24:48 +02:00
parent 28b2859718
commit f9720a38fe
4 changed files with 5 additions and 2 deletions

View File

@ -30,3 +30,4 @@ Christian Tismer
Daniel Nuri
Graham Horler
Andreas Zeidler
Brian Okken

View File

@ -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)

View File

@ -1,2 +1,2 @@
#
__version__ = '2.4.0.dev3'
__version__ = '2.4.0.dev4'

View File

@ -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'],