Enable flake8-blind-except and flake8-comprehensions checks and fix/tag existing failures

pull/10556/head
Matt Westcott 2023-06-12 19:03:57 +01:00 zatwierdzone przez Matt Westcott
rodzic c1333d8c46
commit de825161a2
16 zmienionych plików z 31 dodań i 24 usunięć

Wyświetl plik

@ -8,4 +8,11 @@
ignore = ["D100","D101","D102","D103","D105","N806","E501"]
exclude = ["wagtail/project_template/*","node_modules","venv",".venv","migrations"]
line-length = 88
select = ["E", "F", "I", "T20"]
# E: pycodestyle errors
# F: Pyflakes
# I: isort
# T20: flake8-print
# BLE: flake8-blind-except
# C4: flake8-comprehensions
select = ["E", "F", "I", "T20", "BLE", "C4"]

Wyświetl plik

@ -24,7 +24,7 @@ class PublishBulkAction(PageBulkAction):
def get_context_data(self, **kwargs):
context = super().get_context_data(**kwargs)
context["has_draft_descendants"] = any(
map(lambda x: x["draft_descendant_count"], context["items"])
item["draft_descendant_count"] for item in context["items"]
)
return context

Wyświetl plik

@ -23,7 +23,7 @@ class UnpublishBulkAction(PageBulkAction):
def get_context_data(self, **kwargs):
context = super().get_context_data(**kwargs)
context["has_live_descendants"] = any(
map(lambda x: x["live_descendant_count"] > 0, context["items"])
item["live_descendant_count"] > 0 for item in context["items"]
)
return context

Wyświetl plik

@ -651,7 +651,7 @@ class IndexView(SpreadsheetExportMixin, WMABaseView):
# Allow certain types of errors to be re-raised as-is so that the
# caller can treat them in a special way.
raise
except Exception as e:
except Exception as e: # noqa: BLE001
# Every other error is caught with a naked except, because we don't
# have any other way of validating lookup parameters. They might be
# invalid if the keyword arguments are incorrect, or if the values

Wyświetl plik

@ -269,7 +269,7 @@ def start_import(request):
% {"error_message": e},
)
return redirect("wagtailredirects:start_import")
except Exception as e: # pragma: no cover
except Exception as e: # noqa: BLE001; pragma: no cover
messages.error(
request,
_("%(error)s encountered while trying to read file: %(filename)s")

Wyświetl plik

@ -62,7 +62,7 @@ class SettingModelTestCase(SiteSettingsTestMixin, TestCase):
# Attempt to pickle ImportantPages instance
try:
pickled = pickle.dumps(obj, -1)
except Exception as e:
except Exception as e: # noqa: BLE001
raise AssertionError(
"An error occured when attempting to pickle %r: %s" % (obj, e)
)
@ -70,7 +70,7 @@ class SettingModelTestCase(SiteSettingsTestMixin, TestCase):
# Now unpickle the pickled ImportantPages
try:
unpickled = pickle.loads(pickled)
except Exception as e:
except Exception as e: # noqa: BLE001
raise AssertionError(
"An error occured when attempting to unpickle %r: %s" % (obj, e)
)

Wyświetl plik

@ -114,7 +114,7 @@ class AbstractDocument(CollectionMember, index.Indexed, models.Model):
if self.file_size is None:
try:
self.file_size = self.file.size
except Exception:
except Exception: # noqa: BLE001
# File doesn't exist
return

Wyświetl plik

@ -163,7 +163,7 @@ class WagtailImageField(ImageField):
f.image = willow.Image.open(file)
f.content_type = image_format_name_to_content_type(f.image.format_name)
except Exception as exc:
except Exception as exc: # noqa: BLE001
# Willow doesn't recognize it as an image.
raise ValidationError(
self.error_messages["invalid_image"],

Wyświetl plik

@ -28,7 +28,7 @@ class Command(BaseCommand):
rendition_image = rendition.image
rendition.delete()
success_count = success_count + 1
except Exception:
except Exception: # noqa: BLE001
self.stderr.write(
f"Could not purge rendition for {rendition_image.title}"
)
@ -45,7 +45,7 @@ class Command(BaseCommand):
rendition.delete()
rendition_image.get_rendition(rendition_filter)
success_count = success_count + 1
except Exception:
except Exception: # noqa: BLE001
self.stderr.write(
f"Could not regenerate rendition for {rendition_image.title}"
)

Wyświetl plik

@ -139,7 +139,7 @@ class ImageFileMixin:
if self.file_size is None:
try:
self.file_size = self.file.size
except Exception as e:
except Exception as e: # noqa: BLE001
# File not found
#
# Have to catch everything, because the exception

Wyświetl plik

@ -33,7 +33,7 @@ class TestUpdateImageRenditions(TestCase):
try:
rendition_image = rendition.image
rendition.delete()
except Exception:
except Exception: # noqa: BLE001
warnings.warn(f"Could not delete rendition for {rendition_image}")
def run_command(self, **options):

Wyświetl plik

@ -45,7 +45,7 @@ class Command(BaseCommand):
if not PageLogEntry.objects.filter(revision=revision).exists():
try:
current_revision_as_page = revision.as_object()
except Exception:
except Exception: # noqa: BLE001
# restoring old revisions may fail if e.g. they have an on_delete=PROTECT foreign key
# to a no-longer-existing model instance. We cannot compare changes between two
# non-restorable revisions, although we can at least infer that there was a content
@ -57,7 +57,7 @@ class Command(BaseCommand):
if previous_revision is not None:
try:
previous_revision_as_page = previous_revision.as_object()
except Exception:
except Exception: # noqa: BLE001
previous_revision_as_page = None
if (

Wyświetl plik

@ -85,5 +85,5 @@ class DummyExternalStorageFile(File):
def size(self):
try:
return super().size
except Exception as e:
except Exception as e: # noqa: BLE001
raise DummyExternalStorageError(str(e))

Wyświetl plik

@ -19,7 +19,7 @@ class disconnect_signal_receiver:
try:
func(*args, **kwargs)
except Exception as e:
except Exception as e: # noqa: BLE001
exception = e
finally:
self.signal.connect(self.receiver)

Wyświetl plik

@ -257,7 +257,7 @@ class WagtailPageTestCase(WagtailTestUtils, TestCase):
resp = self.client.get(path, data=query_data)
else:
resp = self.client.post(path, **post_kwargs)
except Exception as e:
except Exception as e: # noqa: BLE001
msg = self._formatMessage(
msg,
'Failed to render route "%(route_path)s" for %(page_type)s "%(page)s":\n%(exc)s'
@ -333,7 +333,7 @@ class WagtailPageTestCase(WagtailTestUtils, TestCase):
path = reverse("wagtailadmin_pages:edit", kwargs={"page_id": page.id})
try:
response = self.client.get(path)
except Exception as e:
except Exception as e: # noqa: BLE001
self.client.logout()
msg = self._formatMessage(
msg,
@ -364,7 +364,7 @@ class WagtailPageTestCase(WagtailTestUtils, TestCase):
try:
self.client.post(path, data_to_post)
except Exception as e:
except Exception as e: # noqa: BLE001
msg = self._formatMessage(
msg,
'Failed to load edit view via POST for %(page_type)s "%(page)s":\n%(exc)s'
@ -419,7 +419,7 @@ class WagtailPageTestCase(WagtailTestUtils, TestCase):
response.content.decode(),
{"is_valid": True, "is_available": True},
)
except Exception as e:
except Exception as e: # noqa: BLE001
self.client.logout()
msg = self._formatMessage(
msg,
@ -435,7 +435,7 @@ class WagtailPageTestCase(WagtailTestUtils, TestCase):
try:
self.client.get(preview_path, data={"mode": mode})
except Exception as e:
except Exception as e: # noqa: BLE001
msg = self._formatMessage(
msg,
'Failed to load preview for %(page_type)s "%(page)s" with mode="%(mode)s":\n%(exc)s'

Wyświetl plik

@ -175,14 +175,14 @@ class TestInvokeViaAttributeShortcut(SimpleTestCase):
def test_pickleability(self):
try:
pickled = pickle.dumps(self.test_object, -1)
except Exception as e:
except Exception as e: # noqa: BLE001
raise AssertionError(
"An error occured when attempting to pickle %r: %s"
% (self.test_object, e)
)
try:
self.test_object = pickle.loads(pickled)
except Exception as e:
except Exception as e: # noqa: BLE001
raise AssertionError(
"An error occured when attempting to unpickle %r: %s"
% (self.test_object, e)