From 3d79e7060eaf642d1f1d369f4172d8f565a2107e Mon Sep 17 00:00:00 2001 From: holger krekel Date: Wed, 28 Nov 2012 09:23:36 +0100 Subject: [PATCH] allow to specify prefixes starting with "_" when customizing python_functions test discovery. (thanks Graham Horler) --- AUTHORS | 1 + CHANGELOG | 3 +++ _pytest/__init__.py | 2 +- setup.py | 2 +- 4 files changed, 6 insertions(+), 2 deletions(-) diff --git a/AUTHORS b/AUTHORS index 2d621772e..ec05a2d95 100644 --- a/AUTHORS +++ b/AUTHORS @@ -23,3 +23,4 @@ Grig Gheorghiu Bob Ippolito Christian Tismer Daniel Nuri +Graham Horler diff --git a/CHANGELOG b/CHANGELOG index c9ce69a8b..5030113c8 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -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 ----------------------------------- diff --git a/_pytest/__init__.py b/_pytest/__init__.py index 345fe83a4..a50067e2b 100644 --- a/_pytest/__init__.py +++ b/_pytest/__init__.py @@ -1,2 +1,2 @@ # -__version__ = '2.4.5dev2' +__version__ = '2.4.5dev3' diff --git a/setup.py b/setup.py index 8a1867f9b..d643e7616 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.5dev2', + version='2.4.5dev3', url='http://pytest.org', license='MIT license', platforms=['unix', 'linux', 'osx', 'cygwin', 'win32'],