diff options
| author | Gauvain Pocentek <gauvain.pocentek@objectif-libre.com> | 2015-05-11 18:31:45 +0200 |
|---|---|---|
| committer | Gauvain Pocentek <gauvain.pocentek@objectif-libre.com> | 2015-05-11 18:31:45 +0200 |
| commit | 105896f59bd3399c7d76934e515dab57bcd4f594 (patch) | |
| tree | 30dc39c9e210b83b0ad1277edf90eec32b3baf85 | |
| parent | 82a88a714e3cf932798c15879fda0a7d6d7047f1 (diff) | |
| download | gitlab-105896f59bd3399c7d76934e515dab57bcd4f594.tar.gz | |
add a tox target to build docs
| -rw-r--r-- | .gitignore | 3 | ||||
| -rw-r--r-- | test-requirements.txt | 2 | ||||
| -rw-r--r-- | tox.ini | 3 |
3 files changed, 7 insertions, 1 deletions
@@ -4,4 +4,5 @@ dist/ MANIFEST .*.swp *.egg-info -.idea/
\ No newline at end of file +.idea/ +docs/_build diff --git a/test-requirements.txt b/test-requirements.txt new file mode 100644 index 0000000..33be0a7 --- /dev/null +++ b/test-requirements.txt @@ -0,0 +1,2 @@ +hacking>=0.9.2,<0.10 +sphinx>=1.1.2,!=1.2.0,<1.3 @@ -23,3 +23,6 @@ commands = {posargs} [flake8] exclude = .git,.venv,.tox,dist,doc,*egg,build, ignore = H501 + +[testenv:docs] +commands = python setup.py build_sphinx |
