Closed aarchiba closed 1 year ago
I am using flake8 version 6.0.0.
This particular error arises because .flake8
has comments on the same lines as ignore
arguments; comments are only allowed on separate lines.
Once this is fixed, flake8 .
still fails:
./tests/test_gp_coefficients.py:303:13: E741 ambiguous variable name 'l'
./tests/test_gp_coefficients.py:321:13: E741 ambiguous variable name 'l'
./tests/test_gp_coefficients.py:363:13: E741 ambiguous variable name 'l'
./tests/test_gp_coefficients.py:378:13: E741 ambiguous variable name 'l'
When I try to run
make test
on a clean install, I get an error out offlake8
:I don't know whether this is a misconfiguration or what, but all I did was install enterprise from conda (for the dependencies), then
pip install -e .
so I could work on the code, thenmake test
.