Test documentation under Tox

This commit is contained in:
Luke Murphy 2019-08-04 18:54:27 +02:00 committed by Laurent Peuch
parent af2c80c3e2
commit d52a574f77
6 changed files with 16 additions and 3 deletions

3
.gitignore vendored
View file

@ -1,5 +1,8 @@
*.py[co]
# Documentation
doc/_build/
# Packages
*.egg
*.egg-info

View file

@ -6,6 +6,8 @@ matrix:
env: TOXENV=py27
- python: 2.7
env: TOXENV=lint
- python: 2.7
env: TOXENV=docs
install:
- pip install tox

0
doc/_static/.git-dont-delete-me vendored Normal file
View file

View file

@ -2,7 +2,7 @@
Role and syntax of the actionsmap
=================================
.. _actionmap:
.. _actionsmap:
Principle
=========

View file

@ -46,7 +46,7 @@ def call_async_output(args, callback, **kwargs):
Keyword arguments:
- args -- String or sequence of program arguments
- callback -- Method or object to call with output as argument
- **kwargs -- Additional arguments for the Popen constructor
- kwargs -- Additional arguments for the Popen constructor
Returns:
Exit status of the command
@ -167,7 +167,7 @@ def run_commands(cmds, callback=None, separate_stderr=False, shell=True,
callback is given, a "subprocess.CalledProcessError"
will be raised in case of command failure.
- separate_stderr -- True to return command output as a 2-tuple
- **kwargs -- Additional arguments for the Popen constructor
- kwargs -- Additional arguments for the Popen constructor
Returns:
Number of failed commands

View file

@ -23,3 +23,11 @@ commands = flake8 moulinette test
deps = flake8
skip_install = True
usedevelop = False
[testenv:docs]
usedevelop = True
commands = python -m sphinx -W doc/ doc/_build
deps =
sphinx
mock
gnupg