diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2017-11-15 13:32:08 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-15 13:32:08 -0800 |
commit | 24d2349eb93272eb71a9d6f8a5fc28f2b04881e9 (patch) | |
tree | 708532ac451121ddf0366981242a0fc7ab1afb86 /.pylintrc | |
parent | acdd5e905be2605138143a970899672634492ecf (diff) | |
parent | 13424ed197676c15c4721fd6cecfded4479744c3 (diff) | |
download | openshift-24d2349eb93272eb71a9d6f8a5fc28f2b04881e9.tar.gz openshift-24d2349eb93272eb71a9d6f8a5fc28f2b04881e9.tar.bz2 openshift-24d2349eb93272eb71a9d6f8a5fc28f2b04881e9.tar.xz openshift-24d2349eb93272eb71a9d6f8a5fc28f2b04881e9.zip |
Merge pull request #6078 from mtnbikenc/require-ansible-2.4
Automatic merge from submit-queue.
Start requiring Ansible 2.4
We've tested Ansible 2.4 and need to start addressing deprecation warnings. This change will allow us to start migrating away from the `include:` directive as well as make necessary changes for obsolete AWS modules.
Diffstat (limited to '.pylintrc')
-rw-r--r-- | .pylintrc | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -214,7 +214,8 @@ ignore-mixin-members=yes # (useful for modules/projects where namespaces are manipulated during runtime # and thus existing member attributes cannot be deduced by static analysis. It # supports qualified module names, as well as Unix pattern matching. -ignored-modules= +# Ignoring ansible.constants to suppress `no-member` warnings +ignored-modules=ansible.constants # List of classes names for which member attributes should not be checked # (useful for classes with attributes dynamically set). This supports can work |