Path: csiph.com!usenet.pasdenom.info!gegeweb.org!de-l.enfer-du-nord.net!feeder1.enfer-du-nord.net!feeds.phibee-telecom.net!newsfeed.xs4all.nl!newsfeed6.news.xs4all.nl!xs4all!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-announce-list@python.org Delivered-To: python-announce-list@mail.python.org X-Spam-Status: OK 0.000 X-Spam-Evidence: '*H*': 1.00; '*S*': 0.00; 'python.': 0.02; 'operator': 0.03; 'args': 0.04; 'fixes': 0.05; 'arguments': 0.07; 'builtin': 0.07; '*args': 0.09; 'arg': 0.09; 'consistency.': 0.09; 'manuel': 0.09; 'patches': 0.09; 'pavel': 0.09; 'skip:= 70': 0.10; 'andreas': 0.16; 'callable,': 0.16; 'classifiers': 0.16; 'easy_install': 0.16; 'krekel': 0.16; 'numpy': 0.16; 'pytest': 0.16; 'received:eu': 0.16; 'subject: \n ': 0.16; 'subject:fixes': 0.16; 'subject:integration': 0.16; 'tracebacks': 0.16; 'unittest,': 0.16; 'fix': 0.17; 'helper': 0.17; 'skip:` 20': 0.17; 'changes': 0.20; 'holger': 0.22; 'parse': 0.22; 'split': 0.23; 'testing': 0.24; 'header:User-Agent:1': 0.26; 'values': 0.26; 'recognized': 0.27; 'andrew': 0.27; 'newer': 0.27; 'arrays': 0.29; 'email name:': 0.29; 'issues.': 0.29; 'integration': 0.29; 'objects': 0.29; 'install': 0.29; 'related': 0.30; 'classes': 0.30; 'function': 0.30; 'skip:- 30': 0.31; 'scalable': 0.33; 'traceback': 0.33; 'another': 0.33; 'thanks': 0.34; 'list': 0.35; 'sometimes': 0.35; 'next': 0.35; 'add': 0.36; 'tool': 0.36; 'url:org': 0.36; 'modules': 0.36; 'to:addr:codespeak.net': 0.36; 'charset:us-ascii': 0.36; 'best,': 0.37; 'subject:: ': 0.38; 'files': 0.38; 'object': 0.38; 'to:addr:python.org': 0.39; 'release': 0.39; 'subject:-': 0.40; 'content-disposition:inline': 0.60; 'skip:u 10': 0.60; 'subject:, ': 0.61; 'to:2**2': 0.62; 'thomas': 0.62; 'between': 0.63; 'show': 0.63; 'received:85': 0.65; 'improvements': 0.65; 'to:addr:python-announce-list': 0.65; 'special': 0.73; '(yes,': 0.84; '2.3.2': 0.84; 'mock': 0.84; 'support:': 0.91 Date: Tue, 6 Nov 2012 14:41:18 +0000 From: holger krekel To: py-dev@codespeak.net, python announce , Testing in Python Subject: pytest-2.3.3: integration fixes, py24 suport, */** args shown in traceback Mail-Followup-To: holger krekel , py-dev@codespeak.net, python announce , Testing in Python MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.20 (2009-06-14) X-Mailman-Approved-At: Tue, 06 Nov 2012 16:50:46 +0100 X-BeenThere: python-announce-list@python.org X-Mailman-Version: 2.1.15 Precedence: list Reply-To: python-list@python.org List-Id: Announcement-only list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Approved: python-announce-list@python.org Newsgroups: comp.lang.python.announce Message-ID: Lines: 62 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1352217047 news.xs4all.nl 6885 [2001:888:2000:d::a6]:37069 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python.announce:746 pytest-2.3.3: integration fixes, py24 suport, *args shown in traceback =========================================================================== pytest-2.3.3 is a another stabilization release of the py.test tool which offers uebersimple assertions, scalable fixture mechanisms and deep customization for testing with Python. Particularly, this release provides: - integration fixes and improvements related to flask, numpy, nose, unittest, mock - makes pytest work on py24 again (yes, people sometimes still need to use it) - show *,** args in pytest tracebacks Thanks to Manuel Jacob, Thomas Waldmann, Ronny Pfannschmidt, Pavel Repin and Andreas Taumoefolau for providing patches and all for the issues. See http://pytest.org/ for general information. To install or upgrade pytest: pip install -U pytest # or easy_install -U pytest best, holger krekel Changes between 2.3.2 and 2.3.3 ----------------------------------- - fix issue214 - parse modules that contain special objects like e. g. flask's request object which blows up on getattr access if no request is active. thanks Thomas Waldmann. - fix issue213 - allow to parametrize with values like numpy arrays that do not support an __eq__ operator - fix issue215 - split test_python.org into multiple files - fix issue148 - @unittest.skip on classes is now recognized and avoids calling setUpClass/tearDownClass, thanks Pavel Repin - fix issue209 - reintroduce python2.4 support by depending on newer pylib which re-introduced statement-finding for pre-AST interpreters - nose support: only call setup if its a callable, thanks Andrew Taumoefolau - fix issue219 - add py2.4-3.3 classifiers to TROVE list - in tracebacks *,** arg values are now shown next to normal arguments (thanks Manuel Jacob) - fix issue217 - support mock.patch with pytest's fixtures - note that you need either mock-1.0.1 or the python3.3 builtin unittest.mock. - fix issue127 - improve documentation for pytest_addoption() and add a ``config.getoption(name)`` helper function for consistency.