From 34843f604b8918c85730ccad4f74b37df61577c5 Mon Sep 17 00:00:00 2001 From: "pawnesh.kumar" Date: Tue, 18 Oct 2016 16:52:24 +0530 Subject: [PATCH] Fix warning when running tox -e docs *WARNING:test command found but not installed in testenv cmd: /bin/rm env: /home/python-mistralclient/.tox/docs Maybe you forgot to specify a dependency? See also the whitelist_externals envconfig setting. *WARNING: html_static_path entry u'/home/python-mistralclient/doc/source/_static' does not exist Change-Id: Ie2757407b79649cfb1a799fbb0d050e294ceacfc --- doc/source/conf.py | 2 +- tox.ini | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/source/conf.py b/doc/source/conf.py index 1879d2dd..30aa6a1e 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -121,7 +121,7 @@ html_theme = 'default' # Add any paths that contain custom static files (such as style sheets) here, # relative to this directory. They are copied after the builtin static files, # so a file named "default.css" will overwrite the builtin "default.css". -html_static_path = ['_static'] +# html_static_path = ['_static'] # If not '', a 'Last updated on:' timestamp is inserted at every page bottom, # using the given strftime format. diff --git a/tox.ini b/tox.ini index a2bcd10f..57805db4 100644 --- a/tox.ini +++ b/tox.ini @@ -24,7 +24,7 @@ commands = find . -type f -name "*.pyc" -delete nosetests mistralclient/tests/unit whitelist_externals = find - + rm [testenv:functional] setenv = OS_TEST_PATH = ./mistralclient/tests/functional