-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added sanity ignore file for ansible-core 2.11; fixed Pylint issues
Details: * Added an ignore file for the sanity test with ansible-core 2.11 by copying the one from 2.10, and removing some Pylint issues 'raise-missing-from'. * Added Pylint disable markers for some 'consider-using-generator' issues raised for docs/sources/conf.py. Signed-off-by: Andreas Maier <[email protected]>
- Loading branch information
1 parent
66e2fbc
commit 9c6290d
Showing
2 changed files
with
25 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
plugins/modules/zhmc_adapter.py validate-modules:missing-gplv3-license # Licensed under Apache 2.0 | ||
plugins/modules/zhmc_crypto_attachment.py validate-modules:missing-gplv3-license # Licensed under Apache 2.0 | ||
plugins/modules/zhmc_cpc.py validate-modules:missing-gplv3-license # Licensed under Apache 2.0 | ||
plugins/modules/zhmc_hba.py validate-modules:missing-gplv3-license # Licensed under Apache 2.0 | ||
plugins/modules/zhmc_nic.py validate-modules:missing-gplv3-license # Licensed under Apache 2.0 | ||
plugins/modules/zhmc_partition.py validate-modules:missing-gplv3-license # Licensed under Apache 2.0 | ||
plugins/modules/zhmc_storage_group.py validate-modules:missing-gplv3-license # Licensed under Apache 2.0 | ||
plugins/modules/zhmc_storage_group_attachment.py validate-modules:missing-gplv3-license # Licensed under Apache 2.0 | ||
plugins/modules/zhmc_storage_volume.py validate-modules:missing-gplv3-license # Licensed under Apache 2.0 | ||
plugins/modules/zhmc_user.py validate-modules:missing-gplv3-license # Licensed under Apache 2.0 | ||
plugins/modules/zhmc_virtual_function.py validate-modules:missing-gplv3-license # Licensed under Apache 2.0 | ||
tools/os_setup.sh shebang # using /bin/bash | ||
plugins/modules/zhmc_adapter.py validate-modules:return-syntax-error # Missing type on generic {property} | ||
plugins/modules/zhmc_cpc.py validate-modules:return-syntax-error # Missing type on generic {property} | ||
plugins/modules/zhmc_crypto_attachment.py validate-modules:return-syntax-error # Missing type on generic {property} | ||
plugins/modules/zhmc_hba.py validate-modules:return-syntax-error # Missing type on generic {property} | ||
plugins/modules/zhmc_nic.py validate-modules:return-syntax-error # Missing type on generic {property} | ||
plugins/modules/zhmc_partition.py validate-modules:return-syntax-error # Missing type on generic {property} | ||
plugins/modules/zhmc_storage_group.py validate-modules:return-syntax-error # Missing type on generic {property} | ||
plugins/modules/zhmc_storage_volume.py validate-modules:return-syntax-error # Missing type on generic {property} | ||
plugins/modules/zhmc_user.py validate-modules:return-syntax-error # Missing type on generic {property} | ||
plugins/modules/zhmc_virtual_function.py validate-modules:return-syntax-error # Missing type on generic {property} |