From 8babb0d1bd958836beae0c50e4dc45e2288fb3a2 Mon Sep 17 00:00:00 2001
From: Mark McLoughlin <markmc@redhat.com>
Date: Thu, 26 Jun 2014 06:32:27 +0100
Subject: [PATCH] Add 'docs' tox environment

To make it easy to build docs with 'tox -e docs'.

Change-Id: Idd47c617196b25539b6b1fc88fac0a45b7fc0911
---
 tox.ini | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/tox.ini b/tox.ini
index 3db4bfb7b..1ac7dc05e 100644
--- a/tox.ini
+++ b/tox.ini
@@ -20,6 +20,9 @@ commands =
 [testenv:venv]
 commands = {posargs}
 
+[testenv:docs]
+commands = python setup.py build_sphinx
+
 [flake8]
 show-source = True
 ignore = E226,E241,E265,E714,H237,H305,H307,H402,H405,H904