From 6e581c495d47c40397a7d2f849186ca2e9faf280 Mon Sep 17 00:00:00 2001 From: Steve Baker Date: Wed, 13 Nov 2013 15:21:04 +1300 Subject: [PATCH] Move resource doc generation to doc/source/ext This is similar to other projects, and removes this code from the withering gaze of coverage reports. Change-Id: Ie0acb2a203f2e69a7d84aba3915a8499ab51ecb6 --- doc/source/conf.py | 2 +- doc/source/ext/__init__.py | 0 {heat/doc => doc/source/ext}/resources.py | 0 3 files changed, 1 insertion(+), 1 deletion(-) create mode 100644 doc/source/ext/__init__.py rename {heat/doc => doc/source/ext}/resources.py (100%) diff --git a/doc/source/conf.py b/doc/source/conf.py index bf9bb91e29..1e0fea5883 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -168,7 +168,7 @@ extensions = ['sphinx.ext.autodoc', 'sphinx.ext.pngmath', 'sphinx.ext.viewcode', 'oslo.sphinx', - 'heat.doc.resources'] + 'ext.resources'] todo_include_todos = True diff --git a/doc/source/ext/__init__.py b/doc/source/ext/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/heat/doc/resources.py b/doc/source/ext/resources.py similarity index 100% rename from heat/doc/resources.py rename to doc/source/ext/resources.py