diff options
author | holger krekel <holger@merlinux.eu> | 2013-02-20 09:48:13 +0100 |
---|---|---|
committer | holger krekel <holger@merlinux.eu> | 2013-02-20 09:48:13 +0100 |
commit | d79ab2078ee61bba09a536e23d266f35f0850fe1 (patch) | |
tree | 335a6e3f84768b1bf6b5c390955ebdee1c789493 | |
parent | 7ca815e53788d8b17d35219412ce69f72e28b513 (diff) | |
download | tox-d79ab2078ee61bba09a536e23d266f35f0850fe1.tar.gz |
for me shell=True fails the sphinx checking, turning it off again
-rw-r--r-- | doc/check_sphinx.py | 4 | ||||
-rw-r--r-- | tox.ini | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/doc/check_sphinx.py b/doc/check_sphinx.py index ac04d4a..0f536ff 100644 --- a/doc/check_sphinx.py +++ b/doc/check_sphinx.py @@ -5,13 +5,13 @@ def test_build_docs(tmpdir): 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)]) @@ -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} |