From 4ca709641dc7c9e1fdf3101baffdb3d2416e045a Mon Sep 17 00:00:00 2001 From: Jeff Quast Date: Sun, 26 Apr 2015 21:48:34 -0700 Subject: Use explicit {toxbindir}, working around non-venvs --- tox.ini | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/tox.ini b/tox.ini index 7510981..0348ee8 100644 --- a/tox.ini +++ b/tox.ini @@ -40,14 +40,12 @@ deps = prospector[with_frosted,with_pyroma] # - doc8 is like pep8 for rst documents. Namely, enforcing styling. # ignore docs/further.rst:21: D000 Bullet list ends without a blank line; # unexpected unindent. This is a tool error -commands = prospector \ +commands = {envbindir}/prospector \ --die-on-tool-error \ --doc-warnings \ {toxinidir} - - rst-lint README.rst - - doc8 --ignore-path docs/_build --ignore D000 docs + {envbindir}/rst-lint README.rst + {envbindir}/doc8 --ignore-path docs/_build --ignore D000 docs [testenv:docs] whitelist_externals=echo @@ -56,7 +54,7 @@ deps=sphinx sphinx_rtd_theme sphinx-paramlinks -commands = sphinx-build -v -W -b html -blinkcheck \ +commands = {envbindir}/sphinx-build -v -W -b html -blinkcheck \ -d {toxinidir}/docs/_build/doctrees \ docs \ {toxinidir}/docs/_build/html -- cgit v1.2.1