nestorsalceda / mamba

The definitive testing tool for Python. Born under the banner of Behavior Driven Development (BDD).
http://nestorsalceda.github.io/mamba
MIT License
518 stars 65 forks source link

pylint and mamba #121

Closed gudatcomputers closed 4 years ago

gudatcomputers commented 5 years ago

Is there any compatibility between pylint and mamba I'm not connecting properly?

pylint complains that Function 'before' has no 'each' member (no-member)

simple reproduction:

from mamba import description, before, it
with description('my example group') as self:
    with before.each:
        self.answer = 42
    with it('is 42'):
        expect(self.answer).to(equal(42))

Thanks

jsenin commented 5 years ago

I just request a pull to void this waning at https://github.com/nestorsalceda/mamba/pull/126

nestorsalceda commented 4 years ago

This was addressed on #126

Thanks for the report @gudatcomputers and for the PR @jsenin