summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorholger krekel <holger@merlinux.eu>2013-02-20 09:48:13 +0100
committerholger krekel <holger@merlinux.eu>2013-02-20 09:48:13 +0100
commitd79ab2078ee61bba09a536e23d266f35f0850fe1 (patch)
tree335a6e3f84768b1bf6b5c390955ebdee1c789493
parent7ca815e53788d8b17d35219412ce69f72e28b513 (diff)
downloadtox-d79ab2078ee61bba09a536e23d266f35f0850fe1.tar.gz
for me shell=True fails the sphinx checking, turning it off again
-rw-r--r--doc/check_sphinx.py4
-rw-r--r--tox.ini2
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)])
diff --git a/tox.ini b/tox.ini
index fc6141f..331b838 100644
--- 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}