Path: csiph.com!fu-berlin.de!uni-berlin.de!not-for-mail From: holger krekel Newsgroups: comp.lang.python.announce Subject: tox-2.2.0: fixes and new ignore_outcome setting Date: Wed, 11 Nov 2015 13:48:15 +0000 Lines: 38 Approved: python-announce-list@python.org Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: news.uni-berlin.de ZjHASFCKrbQYUQvxTAL64Q5rOEppDinzWDFz/qDLNheQ== 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; 'dependency': 0.07; 'regression': 0.09; 'subject:setting': 0.09; 'substitution': 0.09; 'python': 0.10; 'interpreter': 0.15; 'properly': 0.15; 'section.': 0.15; '2.2.0': 0.16; 'received:eu': 0.16; 'received:io': 0.16; 'received:psf.io': 0.16; 'sfxlen:0': 0.16; 'subject:fixes': 0.16; 'attribute': 0.18; 'config': 0.18; 'skip': 0.18; 'skip:` 10': 0.18; 'skip:{ 20': 0.18; 'settings': 0.20; 'fix': 0.21; 'to:2**1': 0.21; 'holger': 0.22; 'parsing': 0.22; 'subject:skip:i 10': 0.22; 'header:User-Agent:1': 0.26; 'command': 0.26; 'linux': 0.26; 'error': 0.27; 'environment': 0.29; '-----': 0.29; 'certain': 0.31; 'url:eu': 0.34; 'add': 0.34; 'instead': 0.36; 'url:org': 0.36; 'urls': 0.36; 'subject:: ': 0.37; 'thanks': 0.37; 'missing': 0.37; 'charset:us-ascii': 0.37; 'subject:-': 0.39; 'to:addr:python.org': 0.40; 'software': 0.40; 'received:85': 0.60; 'default': 0.61; 'more': 0.63; 'here:': 0.63; 'below.': 0.66; 'commands.': 0.84 Content-Disposition: inline User-Agent: Mutt/1.5.20 (2009-06-14) X-Mailman-Approved-At: Thu, 12 Nov 2015 08:53:28 -0500 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 List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Xref: csiph.com comp.lang.python.announce:1919 I just released tox-2.2.0, see changelog below. More about tox here: http://tox.testrun.org have fun, holger -- about me: http://holgerkrekel.net/about-me/ contracting: http://merlinux.eu 2.2.0 ----- - fix issue265 and add LD_LIBRARY_PATH to passenv on linux by default because otherwise the python interpreter might not start up in certain configurations (redhat software collections). Thanks David Riddle. - fix issue246: fix regression in config parsing by reordering such that {envbindir} can be used again in tox.ini. Thanks Olli Walsh. - fix issue99: the {env:...} substitution now properly uses environment settings from the ``setenv`` section. Thanks Itxaka Serrano. - fix issue281: make --force-deps work when urls are present in dependency configs. Thanks Glyph Lefkowitz for reporting. - fix issue174: add new ``ignore_outcome`` testenv attribute which can be set to True in which case it will produce a warning instead of an error on a failed testenv command outcome. Thanks Rebecka Gulliksson for the PR. - fix issue280: properly skip missing interpreter if {envsitepackagesdir} is present in commands. Thanks BB:ceridwenv