allow to specify prefixes starting with "_" when
customizing python_functions test discovery. (thanks Graham Horler)
This commit is contained in:
parent
1d7c71884e
commit
3d79e7060e
1
AUTHORS
1
AUTHORS
|
@ -23,3 +23,4 @@ Grig Gheorghiu
|
||||||
Bob Ippolito
|
Bob Ippolito
|
||||||
Christian Tismer
|
Christian Tismer
|
||||||
Daniel Nuri
|
Daniel Nuri
|
||||||
|
Graham Horler
|
||||||
|
|
|
@ -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
|
- fix bug where using capsys with pytest.set_trace() in a test
|
||||||
function would break when looking at capsys.readouterr()
|
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
|
Changes between 2.3.3 and 2.3.4
|
||||||
-----------------------------------
|
-----------------------------------
|
||||||
|
|
||||||
|
|
|
@ -1,2 +1,2 @@
|
||||||
#
|
#
|
||||||
__version__ = '2.4.5dev2'
|
__version__ = '2.4.5dev3'
|
||||||
|
|
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.5dev2',
|
version='2.4.5dev3',
|
||||||
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