Add testing documentation to travis
This commit is contained in:
parent
e5b975a472
commit
40c794e185
2 changed files with 22 additions and 0 deletions
|
@ -13,3 +13,4 @@ script:
|
||||||
- python2.4 -m compileall -fq -x 'cloud/|monitoring/zabbix.*\.py|/layman\.py|/maven_artifact\.py|clustering/consul.*\.py|notification/pushbullet\.py' .
|
- python2.4 -m compileall -fq -x 'cloud/|monitoring/zabbix.*\.py|/layman\.py|/maven_artifact\.py|clustering/consul.*\.py|notification/pushbullet\.py' .
|
||||||
- python2.6 -m compileall -fq .
|
- python2.6 -m compileall -fq .
|
||||||
- python2.7 -m compileall -fq .
|
- python2.7 -m compileall -fq .
|
||||||
|
- ./test-docs.sh extras
|
||||||
|
|
21
lib/ansible/modules/extras/test-docs.sh
Executable file
21
lib/ansible/modules/extras/test-docs.sh
Executable file
|
@ -0,0 +1,21 @@
|
||||||
|
#!/bin/sh
|
||||||
|
set -x
|
||||||
|
|
||||||
|
CHECKOUT_DIR=".ansible-checkout"
|
||||||
|
MOD_REPO="$1"
|
||||||
|
|
||||||
|
# Hidden file to avoid the module_formatter recursing into the checkout
|
||||||
|
git clone https://github.com/ansible/ansible "$CHECKOUT_DIR"
|
||||||
|
cd "$CHECKOUT_DIR"
|
||||||
|
git submodule update --init
|
||||||
|
rm -rf "lib/ansible/modules/$MOD_REPO"
|
||||||
|
ln -s "$TRAVIS_BUILD_DIR/" "lib/ansible/modules/$MOD_REPO"
|
||||||
|
|
||||||
|
pip install -U Jinja2 PyYAML setuptools six pycrypto sphinx
|
||||||
|
|
||||||
|
. ./hacking/env-setup
|
||||||
|
PAGER=/bin/cat bin/ansible-doc -l
|
||||||
|
if [ $? -ne 0 ] ; then
|
||||||
|
exit $?
|
||||||
|
fi
|
||||||
|
make -C docsite
|
Loading…
Reference in a new issue