Initial ansible-test implementation. (#18556)

This commit is contained in:
Matt Clay
2016-11-29 21:21:53 -08:00
committed by GitHub
parent d95eac16eb
commit 6bbd92e422
191 changed files with 5483 additions and 48 deletions

View File

@@ -5,6 +5,7 @@ BASESTRING_USERS=$(grep -r basestring . \
--exclude-dir .tox \
| grep isinstance \
| grep -v \
-e test/results/ \
-e lib/ansible/compat/six/_six.py \
-e lib/ansible/module_utils/six.py \
-e lib/ansible/modules/core/ \

View File

@@ -0,0 +1,18 @@
#!/bin/sh
cd test/runner/
pylint --max-line-length=120 --reports=n ./*.py ./*/*.py \
--jobs 2 \
--rcfile /dev/null \
--function-rgx '[a-z_][a-z0-9_]{2,40}$' \
-d unused-import \
-d too-few-public-methods \
-d too-many-arguments \
-d too-many-branches \
-d too-many-locals \
-d too-many-statements \
-d too-many-nested-blocks \
-d too-many-instance-attributes \
-d too-many-lines \
-d too-many-return-statements

View File

@@ -0,0 +1 @@
inappropriately-private.sh