2 new commits in tox: https://bitbucket.org/hpk42/tox/commits/d022c2a1d45f/ changeset: d022c2a1d45f user: hpk42 date: 2013-02-20 09:48:13 summary: for me shell=True fails the sphinx checking, turning it off again affected #: 2 files
diff -r 005c8cb84ddd23b2e9ebced73b65c653aeed0560 -r d022c2a1d45fc7114df72f166d5949855505a2b6 doc/check_sphinx.py --- a/doc/check_sphinx.py +++ b/doc/check_sphinx.py @@ -5,13 +5,13 @@ htmldir = tmpdir.join("html") subprocess.check_call([ "sphinx-build", "-W", "-bhtml", - "-d", str(doctrees), ".", str(htmldir)], shell=True) + "-d", str(doctrees), ".", str(htmldir)]) def test_linkcheck(tmpdir): doctrees = tmpdir.join("doctrees") htmldir = tmpdir.join("html") subprocess.check_call( ["sphinx-build", "-blinkcheck", - "-d", str(doctrees), ".", str(htmldir)], shell=True) + "-d", str(doctrees), ".", str(htmldir)]) diff -r 005c8cb84ddd23b2e9ebced73b65c653aeed0560 -r d022c2a1d45fc7114df72f166d5949855505a2b6 tox.ini --- a/tox.ini +++ b/tox.ini @@ -2,7 +2,7 @@ envlist=py27,py26,py25,py31,py32,py33,docs indexserver = testrun = http://pypi.testrun.org - pypi = http://pypi.python.org/simple + pypi = https://pypi.python.org/simple [testenv:X] commands=echo {posargs} https://bitbucket.org/hpk42/tox/commits/f5177c612fba/ changeset: f5177c612fba user: hpk42 date: 2013-02-28 15:44:19 summary: a few fixes and release preps affected #: 5 files diff -r d022c2a1d45fc7114df72f166d5949855505a2b6 -r f5177c612fbadb8552c58693fa7249388c1c1bd3 CHANGELOG --- a/CHANGELOG +++ b/CHANGELOG @@ -1,8 +1,8 @@ 1.4.3 ----------------- -- use pip-script.py instead of pip.exe on win32 to avoid the lock exe file on execution issue - (thanks Philip Thiem) +- use pip-script.py instead of pip.exe on win32 to avoid the lock exe + file on execution issue (thanks Philip Thiem) - introduce -l|--listenv option to list configured environments (thanks Lukasz Balcerzak) @@ -15,13 +15,13 @@ - fix issue84 - pypy on windows creates a bin not a scripts venv directory (thanks Lukasz Balcerzak) -- experimentally introduce --installpkg=PATH option to install a package rather than - create/install an sdist package. This will still require and use - tox.ini and tests from the current working dir (and not from the remote - package). +- experimentally introduce --installpkg=PATH option to install a package + rather than create/install an sdist package. This will still require + and use tox.ini and tests from the current working dir (and not from the + remote package). -- substitute {envsitepackagesdir} with the package installation directory (closes #72) - (thanks g2p) +- substitute {envsitepackagesdir} with the package installation + directory (closes #72) (thanks g2p) - issue #70 remove PYTHONDONTWRITEBYTECODE workaround now that virtualenv behaves properly (thanks g2p) diff -r d022c2a1d45fc7114df72f166d5949855505a2b6 -r f5177c612fbadb8552c58693fa7249388c1c1bd3 doc/announce/release-1.4.3.txt --- a/doc/announce/release-1.4.3.txt +++ b/doc/announce/release-1.4.3.txt @@ -11,7 +11,8 @@ - (experimental) "--installpkg=localpath" option which will skip the sdist-creation of a package and instead install the given localpath package. -- use pip-script.py instead of pip.exe on win32 to avoid windows locking the .exe +- use pip-script.py instead of pip.exe on win32 to avoid windows locking + the .exe Note that the sister project "detox" should continue to work - it's a separately released project which drives tox test runs on multiple CPUs @@ -25,7 +26,7 @@ pip install -U tox -code hosting and issue tracking on bitbucket: +repository hosting and issue tracking on bitbucket: https://bitbucket.org/hpk42/tox @@ -33,8 +34,8 @@ What is tox? ---------------- -tox standardizes and automates tedious test activities driven from a -simple ``tox.ini`` file, including: +tox standardizes and automates tedious python driven test activities +driven from a simple ``tox.ini`` file, including: * creation and management of different virtualenv environments with different Python interpreters diff -r d022c2a1d45fc7114df72f166d5949855505a2b6 -r f5177c612fbadb8552c58693fa7249388c1c1bd3 doc/support.txt --- a/doc/support.txt +++ b/doc/support.txt @@ -30,7 +30,7 @@ .. _`holger's twitter presence`: http://twitter.com/hpk42 .. _`merlinux.eu`: http://merlinux.eu .. _`report on the issue tracker`: https://bitbucket.org/hpk42/tox/issues?status=new&status=open -.. _`tetamap blog`: http://tetamap.wordpress.com +.. _`tetamap blog`: http://holgerkrekel.net .. _`tox-dev`: http://codespeak.net/mailman/listinfo/tox-dev .. _`tox-commit`: http://codespeak.net/mailman/listinfo/tox-commit .. _`clone the mercurial repository`: https://bitbucket.org/hpk42/tox diff -r d022c2a1d45fc7114df72f166d5949855505a2b6 -r f5177c612fbadb8552c58693fa7249388c1c1bd3 setup.py --- a/setup.py +++ b/setup.py @@ -41,7 +41,7 @@ def main(): version = sys.version_info[:2] - install_requires = ['virtualenv>=1.8.4', 'py>=1.4.9', ] + install_requires = ['virtualenv>=1.8.4', 'py>=1.4.12', ] if version < (2, 7) or (3, 0) <= version <= (3, 1): install_requires += ['argparse'] setup( diff -r d022c2a1d45fc7114df72f166d5949855505a2b6 -r f5177c612fbadb8552c58693fa7249388c1c1bd3 tox.ini --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist=py27,py26,py25,py31,py32,py33,docs +envlist=py27,py26,py25,py32,py33,docs,pypy indexserver = testrun = http://pypi.testrun.org pypi = https://pypi.python.org/simple Repository URL: https://bitbucket.org/hpk42/tox/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. _______________________________________________ pytest-commit mailing list pytest-commit@python.org http://mail.python.org/mailman/listinfo/pytest-commit