On Tue, May 02, 2017 at 04:15:22PM -0400, Chris Bergstresser wrote:
> We're using flake8 to test our code, and we're using pytest with
> fixtures. The following code:
>
>
> from staylists.tests.fixtures import fixture1 # noqa: F401
>
> def test_case(fixture1): # noqa: F811
> # Test goe
I tried /usr/bin/python3 -m pylint and it worked, and now it seems like
pylint by itself alsow works. Not sure what I was doing wrong, but thanks.
On Tue, May 2, 2017 at 9:28 AM Florian Bruhin wrote:
> Hi,
>
> On Tue, May 02, 2017 at 02:49:50PM +, Thomas Nelson wrote:
> > I am trying to us