Path: csiph.com!usenet.pasdenom.info!weretis.net!feeder4.news.weretis.net!ecngs!feeder2.ecngs.de!novso.com!newsfeed.xs4all.nl!newsfeed1.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.002 X-Spam-Evidence: '*H*': 1.00; '*S*': 0.00; '-----------': 0.05; 'cache': 0.07; 'fixes': 0.07; 'pypi': 0.07; 'subject:support': 0.07; '1100': 0.09; 'statements': 0.09; 'python': 0.11; 'skip:= 70': 0.12; 'benjamin': 0.16; 'itself,': 0.16; 'krekel': 0.16; 'precision.': 0.16; 'pytest': 0.16; 'python3.': 0.16; 'received:eu': 0.16; 'rewriting': 0.16; 'subject:2.6.2': 0.16; 'subject:fixes': 0.16; 'to:addr:python-announce-list': 0.16; 'followed': 0.16; 'fix': 0.17; 'app': 0.19; 'passing': 0.19; 'examples': 0.20; 'example': 0.22; 'tests': 0.22; 'install': 0.23; 'header:User-Agent:1': 0.23; 'holger': 0.24; 'function': 0.29; 'testing': 0.29; 'correct': 0.29; 'fixed': 0.29; 'code': 0.31; 'doc': 0.31; 'embed': 0.31; 'peterson': 0.31; 'universal': 0.31; 'compatible': 0.32; 'at:': 0.34; 'display': 0.35; 'tool': 0.35; '2.6': 0.36; 'fun,': 0.36; 'charset:us-ascii': 0.36; 'thanks': 0.36; 'similar': 0.36; 'url:org': 0.36; 'issue': 0.38; 'to:addr:python.org': 0.39; 'skip:p 20': 0.39; 'release': 0.40; 'easy': 0.60; 'content-disposition:inline': 0.62; 'more': 0.64; 'different': 0.65; 'to:2**2': 0.65; 'details': 0.65; 'due': 0.66; 'containing': 0.69; 'below.': 0.71; 'mature': 0.84; 'wheel': 0.84; 'sfxlen:1': 0.91 Date: Fri, 5 Sep 2014 12:00:37 +0000 From: holger krekel To: pytest-dev , python announce , Testing in Python Subject: pytest-2.6.2: fixes and freeze support Mail-Followup-To: holger krekel , pytest-dev , 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: Fri, 05 Sep 2014 14:03:32 +0200 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: 52 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1409918612 news.xs4all.nl 2855 [2001:888:2000:d::a6]:54076 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python.announce:1375 pytest-2.6.2: few fixes and cx_freeze support =========================================================================== pytest is a mature Python testing tool with more than a 1100 tests against itself, passing on many different interpreters and platforms. This release is drop-in compatible to 2.5.2 and 2.6.X. It also brings support for including pytest with cx_freeze or similar freezing tools into your single-file app distribution. For details see the CHANGELOG below. See docs at: http://pytest.org As usual, you can upgrade from pypi via:: pip install -U pytest Thanks to all who contributed, among them: Floris Bruynooghe Benjamin Peterson Bruno Oliveira have fun, holger krekel 2.6.2 ----------- - Added function pytest.freeze_includes(), which makes it easy to embed pytest into executables using tools like cx_freeze. See docs for examples and rationale. Thanks Bruno Oliveira. - Improve assertion rewriting cache invalidation precision. - fixed issue561: adapt autouse fixture example for python3. - fixed issue453: assertion rewriting issue with __repr__ containing "\n{", "\n}" and "\n~". - fix issue560: correctly display code if an "else:" or "finally:" is followed by statements on the same line. - Fix example in monkeypatch documentation, thanks t-8ch. - fix issue572: correct tmpdir doc example for python3. - Do not mark as universal wheel because Python 2.6 is different from other builds due to the extra argparse dependency. Fixes issue566. Thanks sontek.