mention added support for setUpModule/tearDownModule detection, thanks Brian Okken.
This commit is contained in:
parent
28b2859718
commit
f9720a38fe
1
AUTHORS
1
AUTHORS
|
@ -30,3 +30,4 @@ Christian Tismer
|
||||||
Daniel Nuri
|
Daniel Nuri
|
||||||
Graham Horler
|
Graham Horler
|
||||||
Andreas Zeidler
|
Andreas Zeidler
|
||||||
|
Brian Okken
|
||||||
|
|
|
@ -1,6 +1,8 @@
|
||||||
Changes between 2.3.5 and 2.4.DEV
|
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
|
- make sessionfinish hooks execute with the same cwd-context as at
|
||||||
session start (helps fix plugin behaviour which write output files
|
session start (helps fix plugin behaviour which write output files
|
||||||
with relative path such as pytest-cov)
|
with relative path such as pytest-cov)
|
||||||
|
|
|
@ -1,2 +1,2 @@
|
||||||
#
|
#
|
||||||
__version__ = '2.4.0.dev3'
|
__version__ = '2.4.0.dev4'
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -12,7 +12,7 @@ def main():
|
||||||
name='pytest',
|
name='pytest',
|
||||||
description='py.test: simple powerful testing with Python',
|
description='py.test: simple powerful testing with Python',
|
||||||
long_description = long_description,
|
long_description = long_description,
|
||||||
version='2.4.0.dev3',
|
version='2.4.0.dev4',
|
||||||
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