1
0
mirror of https://github.com/django/django.git synced 2024-12-22 17:16:24 +00:00

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

@ -5,6 +5,11 @@ from django.contrib.auth.models import User
from django.core.files.storage import FileSystemStorage
from django.db import models
try:
from PIL import Image
except ImportError:
Image = None
else:
temp_storage_dir = tempfile.mkdtemp()
temp_storage = FileSystemStorage(temp_storage_dir)
@ -182,6 +187,7 @@ class Advisor(models.Model):
class Student(models.Model):
name = models.CharField(max_length=255)
if Image:
photo = models.ImageField(
storage=temp_storage, upload_to="photos", blank=True, null=True
)

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