Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python.announce > #1752

pytest-2.7.2: bug fixes

Path csiph.com!optima2.xanadu-bbs.net!xanadu-bbs.net!feeder.erje.net!1.eu.feeder.erje.net!newsfeed.xs4all.nl!newsfeed7.news.xs4all.nl!post.news.xs4all.nl!not-for-mail
Return-Path <holger@merlinux.eu>
X-Original-To python-announce-list@python.org
Delivered-To python-announce-list@mail.python.org
X-Spam-Status OK 0.001
X-Spam-Evidence '*H*': 1.00; '*S*': 0.00; 'debug': 0.04; 'fixes': 0.05; 'subject:bug': 0.05; 'testing,': 0.05; 'doctest': 0.07; 'pypi': 0.07; 'unittest': 0.07; '1100': 0.09; 'benjamin': 0.09; 'release,': 0.09; 'skipping': 0.09; 'bug': 0.10; 'python': 0.11; 'algorithm': 0.13; 'exception': 0.13; '2.7.2': 0.16; 'krekel': 0.16; 'log.': 0.16; 'marker': 0.16; 'pytest': 0.16; 'received:eu': 0.16; 'subject:fixes': 0.16; 'attribute': 0.18; 'tests': 0.18; 'versions': 0.20; 'changes': 0.20; 'contributed': 0.20; 'fix': 0.21; 'holger': 0.22; 'skip:= 20': 0.22; 'elements': 0.23; 'passing': 0.23; 'sets': 0.23; 'testing': 0.25; 'install': 0.25; 'header:User-Agent:1': 0.26; 'compatible': 0.27; 'xml': 0.27; 'itself,': 0.29; 'peterson': 0.29; 'reporting': 0.29; 'supposed': 0.31; 'similar': 0.32; 'platforms.': 0.33; 'traceback': 0.33; 'url:eu': 0.34; 'eric': 0.35; 'instance': 0.35; 'url:org': 0.36; 'tool': 0.36; 'thanks': 0.36; '(and': 0.36; 'at:': 0.37; 'subject:: ': 0.37; 'charset:us-ascii': 0.37; 'release': 0.37; 'skip:- 20': 0.37; 'reports': 0.38; 'test': 0.39; 'does': 0.39; 'to:addr:python.org': 0.39; 'subject:-': 0.39; 'received:85': 0.60; 'content-disposition:inline': 0.60; 'providing': 0.61; 'skip:u 10': 0.62; 'more': 0.62; 'thomas': 0.63; 'different': 0.64; 'results': 0.66; 'edison': 0.84; 'failures.': 0.84; 'pip': 0.84; 'plugin.': 0.84; 'generation.': 0.91; 'sfxlen:1': 0.91
Date Tue, 23 Jun 2015 14:40:05 +0000
From holger krekel <holger@merlinux.eu>
To pytest-dev <pytest-dev@python.org>, Testing in Python <testing-in-python@lists.idyll.org>, python announce <python-announce-list@python.org>
Subject pytest-2.7.2: bug fixes
Mail-Followup-To holger krekel <holger@merlinux.eu>, pytest-dev <pytest-dev@python.org>, Testing in Python <testing-in-python@lists.idyll.org>, python announce <python-announce-list@python.org>
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 Wed, 24 Jun 2015 09:27:46 +0200
X-BeenThere python-announce-list@python.org
X-Mailman-Version 2.1.20+
Precedence list
List-Id Announcement-only list for the Python programming language <python-announce-list.python.org>
List-Unsubscribe <https://mail.python.org/mailman/options/python-announce-list>, <mailto:python-announce-list-request@python.org?subject=unsubscribe>
List-Archive <http://mail.python.org/pipermail/python-announce-list/>
List-Post <mailto:python-announce-list@python.org>
List-Help <mailto:python-announce-list-request@python.org?subject=help>
List-Subscribe <https://mail.python.org/mailman/listinfo/python-announce-list>, <mailto:python-announce-list-request@python.org?subject=subscribe>
Approved python-announce-list@python.org
Newsgroups comp.lang.python.announce
Message-ID <mailman.8.1435130868.3674.python-announce-list@python.org> (permalink)
Lines 61
NNTP-Posting-Host 2001:888:2000:d::a6
X-Trace 1435130868 news.xs4all.nl 2844 [2001:888:2000:d::a6]:59408
X-Complaints-To abuse@xs4all.nl
Xref csiph.com comp.lang.python.announce:1752

Show key headers only | View raw


pytest-2.7.2: bug fixes
=======================

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 supposed to be drop-in compatible to 2.7.1.

See below for the changes and see docs at:

    http://pytest.org

As usual, you can upgrade from pypi via::

    pip install -U pytest

Thanks to all who contributed to this release, among them:

    Bruno Oliveira
    Floris Bruynooghe
    Punyashloka Biswal
    Aron Curzon
    Benjamin Peterson
    Thomas De Schampheleire
    Edison Gustavo Muenz
    Holger Krekel

Happy testing,
The py.test Development Team


2.7.2 (compared to 2.7.1)
-----------------------------

- fix issue767: pytest.raises value attribute does not contain the exception
  instance on Python 2.6. Thanks Eric Siegerman for providing the test
  case and Bruno Oliveira for PR.

- Automatically create directory for junitxml and results log.
  Thanks Aron Curzon.

- fix issue713: JUnit XML reports for doctest failures.
  Thanks Punyashloka Biswal.

- fix issue735: assertion failures on debug versions of Python 3.4+
  Thanks Benjamin Peterson.

- fix issue114: skipif marker reports to internal skipping plugin;
  Thanks Floris Bruynooghe for reporting and Bruno Oliveira for the PR.

- fix issue748: unittest.SkipTest reports to internal pytest unittest plugin.
  Thanks Thomas De Schampheleire for reporting and Bruno Oliveira for the PR.

- fix issue718: failed to create representation of sets containing unsortable
  elements in python 2. Thanks Edison Gustavo Muenz

- fix issue756, fix issue752 (and similar issues): depend on py-1.4.29
  which has a refined algorithm for traceback generation.

-- 
about me:    http://holgerkrekel.net/about-me/
contracting: http://merlinux.eu

Back to comp.lang.python.announce | Previous | Next | Find similar | Unroll thread


Thread

pytest-2.7.2: bug fixes  holger krekel <holger@merlinux.eu> - 2015-06-23 14:40 +0000

csiph-web