diff options
-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 |