allow to specify prefixes starting with "_" when

customizing python_functions test discovery. (thanks Graham Horler)
This commit is contained in:
holger krekel 2012-11-28 09:23:36 +01:00
parent 1d7c71884e
commit 3d79e7060e
4 changed files with 6 additions and 2 deletions

View File

@ -23,3 +23,4 @@ Grig Gheorghiu
Bob Ippolito
Christian Tismer
Daniel Nuri
Graham Horler

View File

@ -10,6 +10,9 @@ Changes between 2.3.4 and 2.3.5dev
- fix bug where using capsys with pytest.set_trace() in a test
function would break when looking at capsys.readouterr()
- allow to specify prefixes starting with "_" when
customizing python_functions test discovery. (thanks Graham Horler)
Changes between 2.3.3 and 2.3.4
-----------------------------------

View File

@ -1,2 +1,2 @@
#
__version__ = '2.4.5dev2'
__version__ = '2.4.5dev3'

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.5dev2',
version='2.4.5dev3',
url='http://pytest.org',
license='MIT license',
platforms=['unix', 'linux', 'osx', 'cygwin', 'win32'],