diff options
author | Scott Moser <smoser@ubuntu.com> | 2012-03-08 15:02:55 -0500 |
---|---|---|
committer | Scott Moser <smoser@ubuntu.com> | 2012-03-08 15:02:55 -0500 |
commit | db695dcd2d31770b33f5b7cb4ff0811209d175a3 (patch) | |
tree | 382bc3ba379bd015c8a51fdf1769a37fa920c4e1 /tools | |
parent | 54b593a166c4ac4043615dddc94a941ebc712300 (diff) | |
parent | 62623b8c5ac10b2bff9f6205f696b4277bce9451 (diff) | |
download | vyos-cloud-init-db695dcd2d31770b33f5b7cb4ff0811209d175a3.tar.gz vyos-cloud-init-db695dcd2d31770b33f5b7cb4ff0811209d175a3.zip |
Add DataSourceMaaS, a Data Source for Ubuntu Machine as a Service
LP: #942061
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/run-pylint | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/run-pylint b/tools/run-pylint index e271c3d5..46748ffb 100755 --- a/tools/run-pylint +++ b/tools/run-pylint @@ -1,6 +1,8 @@ #!/bin/bash -def_files='cloud*.py cloudinit/*.py cloudinit/CloudConfig/*.py' +ci_files='cloud*.py cloudinit/*.py cloudinit/CloudConfig/*.py' +test_files=$(find tests -name "*.py") +def_files="$ci_files $test_files" if [ $# -eq 0 ]; then files=( ) |