You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
...
Your code has been rated at 8.80/10 (previous run: 8.80/10, +0.00)
make: *** [Makefile:50: lint] Error 30
This means that, when calling make all, the black test isn't reached.
Doing either of the following in python/Makefile fixes the issue:
Add --fail-under=0 to PYLINT_ARGS
Change the order of the tests in all from test lint black to test black lint.
The text was updated successfully, but these errors were encountered:
samsrabin
added
testing
additions or changes to tests
next
this should get some attention in the next week or two. Normally each Thursday SE meeting.
labels
Jan 11, 2024
As of ctsm5.1.dev163,
make lint
errors:This means that, when calling
make all
, theblack
test isn't reached.Doing either of the following in
python/Makefile
fixes the issue:--fail-under=0
toPYLINT_ARGS
all
fromtest lint black
totest black lint
.The text was updated successfully, but these errors were encountered: