mirror of
https://github.com/YunoHost/moulinette.git
synced 2024-09-03 20:06:31 +02:00
Test documentation under Tox
This commit is contained in:
parent
af2c80c3e2
commit
d52a574f77
6 changed files with 16 additions and 3 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -1,5 +1,8 @@
|
|||
*.py[co]
|
||||
|
||||
# Documentation
|
||||
doc/_build/
|
||||
|
||||
# Packages
|
||||
*.egg
|
||||
*.egg-info
|
||||
|
|
|
@ -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
0
doc/_static/.git-dont-delete-me
vendored
Normal file
|
@ -2,7 +2,7 @@
|
|||
Role and syntax of the actionsmap
|
||||
=================================
|
||||
|
||||
.. _actionmap:
|
||||
.. _actionsmap:
|
||||
|
||||
Principle
|
||||
=========
|
||||
|
|
|
@ -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
|
||||
|
|
8
tox.ini
8
tox.ini
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue