Re: [Cloud-init-dev] [Merge] ~raharper/cloud-init:fix/pylint-no-member into cloud-init:master

2019-09-25 Thread Scott Moser
seems like filing an issue with astroid would be good thing to do.

but other than that, i guess approve.
-- 
https://code.launchpad.net/~raharper/cloud-init/+git/cloud-init/+merge/373177
Your team cloud-init Commiters is requested to review the proposed merge of 
~raharper/cloud-init:fix/pylint-no-member into cloud-init:master.

___
Mailing list: https://launchpad.net/~cloud-init-dev
Post to : cloud-init-dev@lists.launchpad.net
Unsubscribe : https://launchpad.net/~cloud-init-dev
More help   : https://help.launchpad.net/ListHelp


Re: [Cloud-init-dev] [Merge] ~raharper/cloud-init:fix/pylint-no-member into cloud-init:master

2019-09-25 Thread Ryan Harper
>From Paride, 

## [E1101(no-member), TestConfig.test_handle_with_no_growpart_entry]
## Instance of 'AbstractContextManager' has no 'enter_context' member

This is caused by astroid 2.3.0 (released yesterday). It does not happen
with Python 3.7, but with Python 3.6 it does. This could be because
contextlib2 (where the failures happen) does nothing in Py37, as there
is nothing to backport.


-- 
https://code.launchpad.net/~raharper/cloud-init/+git/cloud-init/+merge/373177
Your team cloud-init Commiters is requested to review the proposed merge of 
~raharper/cloud-init:fix/pylint-no-member into cloud-init:master.

___
Mailing list: https://launchpad.net/~cloud-init-dev
Post to : cloud-init-dev@lists.launchpad.net
Unsubscribe : https://launchpad.net/~cloud-init-dev
More help   : https://help.launchpad.net/ListHelp


Re: [Cloud-init-dev] [Merge] ~raharper/cloud-init:fix/pylint-no-member into cloud-init:master

2019-09-25 Thread Ryan Harper
Here's the error:

https://paste.ubuntu.com/p/fvYN3Pjg39/
-- 
https://code.launchpad.net/~raharper/cloud-init/+git/cloud-init/+merge/373177
Your team cloud-init Commiters is requested to review the proposed merge of 
~raharper/cloud-init:fix/pylint-no-member into cloud-init:master.

___
Mailing list: https://launchpad.net/~cloud-init-dev
Post to : cloud-init-dev@lists.launchpad.net
Unsubscribe : https://launchpad.net/~cloud-init-dev
More help   : https://help.launchpad.net/ListHelp


Re: [Cloud-init-dev] [Merge] ~raharper/cloud-init:fix/pylint-no-member into cloud-init:master

2019-09-25 Thread Ryan Harper
Yes, you can reproduce inside a bionic lxd container with master.  just tox -e 
pylint
-- 
https://code.launchpad.net/~raharper/cloud-init/+git/cloud-init/+merge/373177
Your team cloud-init Commiters is requested to review the proposed merge of 
~raharper/cloud-init:fix/pylint-no-member into cloud-init:master.

___
Mailing list: https://launchpad.net/~cloud-init-dev
Post to : cloud-init-dev@lists.launchpad.net
Unsubscribe : https://launchpad.net/~cloud-init-dev
More help   : https://help.launchpad.net/ListHelp


Re: [Cloud-init-dev] [Merge] ~raharper/cloud-init:fix/pylint-no-member into cloud-init:master

2019-09-25 Thread Scott Moser
Did the bionic version of pylint fail?
Really just curious what changed.

-- 
https://code.launchpad.net/~raharper/cloud-init/+git/cloud-init/+merge/373177
Your team cloud-init Commiters is requested to review the proposed merge of 
~raharper/cloud-init:fix/pylint-no-member into cloud-init:master.

___
Mailing list: https://launchpad.net/~cloud-init-dev
Post to : cloud-init-dev@lists.launchpad.net
Unsubscribe : https://launchpad.net/~cloud-init-dev
More help   : https://help.launchpad.net/ListHelp


Re: [Cloud-init-dev] [Merge] ~raharper/cloud-init:fix/pylint-no-member into cloud-init:master

2019-09-25 Thread Server Team CI bot
Review: Approve continuous-integration

PASSED: Continuous integration, rev:92227e036d36273b973b87cd94527d602498ed7f
https://jenkins.ubuntu.com/server/job/cloud-init-ci/1171/
Executed test runs:
SUCCESS: Checkout
SUCCESS: Unit & Style Tests
SUCCESS: Ubuntu LTS: Build
SUCCESS: Ubuntu LTS: Integration
IN_PROGRESS: Declarative: Post Actions


Click here to trigger a rebuild:
https://jenkins.ubuntu.com/server/job/cloud-init-ci/1171//rebuild
-- 
https://code.launchpad.net/~raharper/cloud-init/+git/cloud-init/+merge/373177
Your team cloud-init Commiters is requested to review the proposed merge of 
~raharper/cloud-init:fix/pylint-no-member into cloud-init:master.

___
Mailing list: https://launchpad.net/~cloud-init-dev
Post to : cloud-init-dev@lists.launchpad.net
Unsubscribe : https://launchpad.net/~cloud-init-dev
More help   : https://help.launchpad.net/ListHelp


[Cloud-init-dev] [Merge] ~raharper/cloud-init:fix/pylint-no-member into cloud-init:master

2019-09-25 Thread Ryan Harper
Ryan Harper has proposed merging ~raharper/cloud-init:fix/pylint-no-member into 
cloud-init:master.

Commit message:
pylintrc: add 'enter_context' to generated-members list

On Bionic (python 3.6.8) we now see no-member errors on untouched code.
This does not reproduce on Xenial (3.5) nor on Eoan (3.7.4). Resolve this
by adding the member attribute to the generated member list in pylintrc.
This fixes CI failures.

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

For more details, see:
https://code.launchpad.net/~raharper/cloud-init/+git/cloud-init/+merge/373177
-- 
Your team cloud-init Commiters is requested to review the proposed merge of 
~raharper/cloud-init:fix/pylint-no-member 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
 
___
Mailing list: https://launchpad.net/~cloud-init-dev
Post to : cloud-init-dev@lists.launchpad.net
Unsubscribe : https://launchpad.net/~cloud-init-dev
More help   : https://help.launchpad.net/ListHelp