summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Quast <contact@jeffquast.com>2015-04-26 21:48:34 -0700
committerJeff Quast <contact@jeffquast.com>2015-04-26 21:48:34 -0700
commit4ca709641dc7c9e1fdf3101baffdb3d2416e045a (patch)
treea603e2010fbfad131b8b318d6cc47c90636575e5
parent57eac8ffb73a9a9300f35abd2a6096a851ef52b4 (diff)
downloadblessings-4ca709641dc7c9e1fdf3101baffdb3d2416e045a.tar.gz
Use explicit {toxbindir}, working around non-venvs
-rw-r--r--tox.ini10
1 files 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