Path: csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!feeder.erje.net!1.eu.feeder.erje.net!news.roellig-ltd.de!open-news-network.org!border2.nntp.ams1.giganews.com!nntp.giganews.com!bcyclone02.am1.xlned.com!bcyclone02.am1.xlned.com!newsfeed.xs4all.nl!newsfeed8.news.xs4all.nl!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.062 X-Spam-Evidence: '*H*': 0.88; '*S*': 0.00; 'pypi': 0.07; 'experimental': 0.09; 'invocation': 0.09; 'envlist': 0.16; 'received:eu': 0.16; 'sfxlen:0': 0.16; 'variables': 0.18; 'settings': 0.20; 'fix': 0.21; 'holger': 0.22; 'pass': 0.22; 'to:2**1': 0.22; 'split': 0.23; 'implemented': 0.24; 'header:User- Agent:1': 0.26; 'figure': 0.27; 'behaviour': 0.29; 'marc': 0.29; 'environment': 0.29; '-----': 0.29; 'allows': 0.30; 'comments': 0.30; 'option': 0.31; 'possibly': 0.32; 'url:org': 0.36; 'list,': 0.36; 'thanks': 0.36; 'should': 0.37; 'setting': 0.37; 'subject:: ': 0.37; 'charset:us-ascii': 0.37; 'environment.': 0.37; 'test': 0.39; 'to:addr:python.org': 0.39; 'subject:-': 0.39; 'received:85': 0.60; 'content-disposition:inline': 0.60; 'here:': 0.62; 'more': 0.62; 'below.': 0.66; 'introduce': 0.78; 'andre': 0.84; 'hardly': 0.84; 'naturally.': 0.84 Date: Fri, 19 Jun 2015 14:09:08 +0000 From: holger krekel To: Testing in Python , python announce Subject: tox-2.1.0: passenv refinements 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, 19 Jun 2015 16:12:05 +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 List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Approved: python-announce-list@python.org Newsgroups: comp.lang.python.announce Message-ID: Lines: 34 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1434723126 news.xs4all.nl 2821 [2001:888:2000:d::a6]:55942 X-Complaints-To: abuse@xs4all.nl X-Received-Bytes: 3643 X-Received-Body-CRC: 3130548679 Xref: csiph.com comp.lang.python.announce:1745 I just released tox-2.1.0 to pypi which streamlines the "passenv" behaviour to accomodate a number of issues, see the changelog below. You can find docs for the virtualenv based test runner here: http://tox.testrun.org have fun, holger 2.1.0 ----- - fix issue258, fix issue248, fix issue253: for non-test commands (installation, venv creation) we pass in the full invocation environment. - remove experimental --set-home option which was hardly used and hackily implemented (if people want home-directory isolation we should figure out a better way to do it, possibly through a plugin) - fix issue259: passenv is now a line-list which allows to intersperse comments. Thanks stefano-m. - allow envlist to be a multi-line list, to intersperse comments and have long envlist settings split more naturally. Thanks Andre Caron. - introduce a TOX_TESTENV_PASSENV setting which is honored when constructing the set of environment variables for test environments. Thanks Marc Abramowitz for pushing in this direction.