Refs #19215 -- Fixed admin_widgets tests if Pillow isn't installed.

Follow up to c0fc1b5302.
This commit is contained in:
Mariusz Felisiak 2022-10-27 08:41:03 +02:00 committed by GitHub
parent eb6cc01d0f
commit d559cb02da
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 14 additions and 5 deletions

View file

@ -3,6 +3,7 @@ import os
import re
from datetime import datetime, timedelta
from importlib import import_module
from unittest import skipUnless
try:
import zoneinfo
@ -38,6 +39,7 @@ from .models import (
Company,
Event,
Honeycomb,
Image,
Individual,
Inventory,
Member,
@ -1774,6 +1776,7 @@ class RelatedFieldWidgetSeleniumTests(AdminWidgetSeleniumTestCase):
self.assertEqual(profiles[0].user.username, username_value)
@skipUnless(Image, "Pillow not installed")
class ImageFieldWidgetsSeleniumTests(AdminWidgetSeleniumTestCase):
def test_clearablefileinput_widget(self):
from selenium.webdriver.common.by import By