← Back to team overview

cloud-init-dev team mailing list archive

[Merge] ~daniel-thewatkins/cloud-init/+git/cloud-init:ci_fix into cloud-init:master

 

Dan Watkins has proposed merging ~daniel-thewatkins/cloud-init/+git/cloud-init:ci_fix into cloud-init:master.

Commit message:
.pylintrc: ignore missing enter_context members

Pylint has started (incorrectly) warning about these in some test cases,
so unbreak the build by ignoring them.

Requested reviews:
  cloud-init Commiters (cloud-init-dev)

For more details, see:
https://code.launchpad.net/~daniel-thewatkins/cloud-init/+git/cloud-init/+merge/373221
-- 
Your team cloud-init Commiters is requested to review the proposed merge of ~daniel-thewatkins/cloud-init/+git/cloud-init:ci_fix into cloud-init:master.
diff --git a/.pylintrc b/.pylintrc
index e376b48..365c8c8 100644
--- a/.pylintrc
+++ b/.pylintrc
@@ -67,5 +67,5 @@ ignored-classes=argparse.Namespace,optparse.Values,thread._local
 # List of members which are set dynamically and missed by pylint inference
 # system, and so shouldn't trigger E1101 when accessed. Python regular
 # expressions are accepted.
-generated-members=types,http.client,command_handlers,m_.*
+generated-members=types,http.client,command_handlers,m_.*,enter_context
 

Follow ups