diff options
author | Michał Górny <mgorny@gentoo.org> | 2020-01-09 21:10:03 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2020-01-09 21:10:03 +0100 |
commit | d625db8d322c29d341c04223b386b0be28060663 (patch) | |
tree | ff45be148055e04f509c29b249d7f63124cd5d9c | |
parent | Keep _static and _templates directories (diff) | |
download | policy-guide-d625db8d322c29d341c04223b386b0be28060663.tar.gz policy-guide-d625db8d322c29d341c04223b386b0be28060663.tar.bz2 policy-guide-d625db8d322c29d341c04223b386b0be28060663.zip |
Include tox.ini to build via virtualenv
Signed-off-by: Michał Górny <mgorny@gentoo.org>
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | conf.py | 2 | ||||
-rw-r--r-- | tox.ini | 10 |
3 files changed, 12 insertions, 1 deletions
@@ -1 +1,2 @@ /_build/ +/.tox/ @@ -62,7 +62,7 @@ language = None # List of patterns, relative to source directory, that match files and # directories to ignore when looking for source files. # This pattern also affects html_static_path and html_extra_path . -exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store'] +exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store', '.tox'] # The name of the Pygments (syntax highlighting) style to use. pygments_style = 'sphinx' @@ -0,0 +1,10 @@ +[tox] +envlist = py3 +skipsdist = True + +[testenv] +deps = + sphinx + +commands = + make html |