Path: csiph.com!usenet.pasdenom.info!weretis.net!feeder4.news.weretis.net!rt.uk.eu.org!newsfeed.xs4all.nl!newsfeed4a.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; '(so': 0.07; '---------': 0.07; 'defaults': 0.07; 'environments': 0.07; 'fixes': 0.07; 'subject:bug': 0.07; 'tests.': 0.07; 'anymore.': 0.09; 'dependency': 0.09; 'lookup': 0.09; 'override': 0.09; 'parsing': 0.09; 'release.': 0.09; 'repeated': 0.09; 'runs': 0.10; 'random': 0.14; 'windows': 0.15; 'false)': 0.16; 'merged': 0.16; 'python2.5': 0.16; 'received:eu': 0.16; 'streams.': 0.16; 'subject:fixes': 0.16; 'substitution': 0.16; 'to:addr:python- announce-list': 0.16; 'fix': 0.17; 'settings': 0.22; 'example': 0.22; 'tests': 0.22; 'install': 0.23; 'creating': 0.23; 'installation': 0.23; 'header:User-Agent:1': 0.23; 'holger': 0.24; 'precise': 0.24; 'progress.': 0.24; 'removed.': 0.24; 'skip': 0.24; 'unicode': 0.24; 'environment': 0.24; 'to:2**1': 0.27; 'chris': 0.29; 'leave': 0.29; 'related': 0.29; 'sets': 0.30; 'specified': 0.30; 'requests': 0.31; "skip:' 10": 0.31; 'allows': 0.31; 'this.': 0.32; 'option': 0.32; 'run': 0.32; 'worked': 0.33; 'bugs': 0.33; 'could': 0.34; 'problem': 0.35; 'offered': 0.35; 'skip:u 20': 0.35; 'test': 0.35; 'but': 0.35; 'there': 0.35; 'version': 0.36; 'fun,': 0.36; 'thanks': 0.36; 'url:org': 0.36; 'behind': 0.37; 'detail': 0.37; 'too': 0.37; 'generic': 0.38; 'requiring': 0.38; 'skip:- 10': 0.38; 'rather': 0.38; 'expect': 0.39; 'sure': 0.39; 'to:addr:python.org': 0.39; 'changed': 0.39; 'removing': 0.60; 'full': 0.61; 'new': 0.61; 'content- disposition:inline': 0.62; 'complete': 0.62; 'became': 0.64; 'more': 0.64; 'different': 0.65; 'due': 0.66; 'latest': 0.67; 'improvements': 0.68; 'home': 0.69; 'default': 0.69; 'repeat': 0.74; 'introduce': 0.78; 'alone.': 0.84; 'rework': 0.84; 'url:latest': 0.91 Date: Wed, 29 Jan 2014 13:28:21 +0000 From: holger krekel To: Testing in Python , python announce Subject: tox-1.7.0: many bug fixes and little improvements MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit User-Agent: Mutt/1.5.20 (2009-06-14) X-Mailman-Approved-At: Thu, 30 Jan 2014 10:20:36 +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: 80 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1391073638 news.xs4all.nl 2847 [2001:888:2000:d::a6]:36043 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python.announce:1199 Just released tox-1.7.0 (finally), the generic virtualenv-based test runner for Python. It contains a lot of fixes and improvements although there are some bugs remaining. While a lot of pull requests are thankfully offered i could use some more co-maintaining/reviewing to allow for some faster progress. Anyway, to install to 1.7.0 : pip install -U tox and to look at the docs: https://testrun.org/tox/latest/ have fun, holger 1.7.0 --------- - don't lookup "pip-script" anymore but rather just "pip" on windows as this is a pip implementation detail and changed with pip-1.5. It might mean that tox-1.7 is not able to install a different pip version into a virtualenv anymore. - drop Python2.5 compatibility because it became too hard due to the setuptools-2.0 dropping support. tox now has no support for creating python2.5 based environments anymore and all internal special-handling has been removed. - merged PR81: new option --force-dep which allows to override tox.ini specified dependencies in setuptools-style. For example "--force-dep 'django<1.6'" will make sure that any environment using "django" as a dependency will get the latest 1.5 release. Thanks Bruno Oliveria for the complete PR. - merged PR125: tox now sets "PYTHONHASHSEED" to a random value and offers a "--hashseed" option to repeat a test run with a specific seed. You can also use --hashsheed=notset to instruct tox to leave the value alone. Thanks Chris Jerdonek for all the work behind this. - fix issue132: removing zip_safe setting (so it defaults to false) to allow installation of tox via easy_install/eggs. Thanks Jenisys. - fix issue126: depend on virtualenv>=1.11.2 so that we can rely (hopefully) on a pip version which supports --pre. (tox by default uses to --pre). also merged in PR84 so that we now call "virtualenv" directly instead of looking up interpreters. Thanks Ionel Maries Cristian. This also fixes issue140. - fix issue130: you can now set install_command=easy_install {opts} {packages} and expect it to work for repeated tox runs (previously it only worked when always recreating). Thanks jenisys for precise reporting. - fix issue129: tox now uses Popen(..., universal_newlines=True) to force creation of unicode stdout/stderr streams. fixes a problem on specific platform configs when creating virtualenvs with Python3.3. Thanks Jorgen Schäfer or investigation and solution sketch. - fix issue128: enable full substitution in install_command, thanks for the PR to Ronald Evers - rework and simplify "commands" parsing and in particular posargs substitutions to avoid various win32/posix related quoting issues. - make sure that the --installpkg option trumps any usedevelop settings in tox.ini or - introduce --no-network to tox's own test suite to skip tests requiring networks - introduce --sitepackages to force sitepackages=True in all environments. - fix issue105 -- don't depend on an existing HOME directory from tox tests.