django-filer: модель FilerFile не сохраняется; Вместо этого возникла ошибка NoneType. Зачем?

Привет я пытаюсь проверить макет django-filer save() этот триггер post_save сигнал.

models.py

import filer.fields.file import FilerFileField

class DeliveryInvoice(TimeStampedModel):
    invoice_excel = FilerFileField(null=True, blank=True)

tests.py

from filer.models.filemodels import File as FilerFile
from django.core.files import File

def test_if_delivery_invoice_number_updated_on_file_save_through_admin(self):
    with patch("orders.utils.apply_invoice_number_to_orders") as signal_mock_handler:
        post_save.connect(signal_mock_handler, sender=DeliveryInvoice)

        filename = 'test_invoice_excel'
        filepath = 'orders/fixtures/delivery_invoices.xlsx'

        with open(filepath, 'rb') as f:
            file_obj = File(f, name=filename)
error ->    invoice_excel = FilerFile.objects.create(owner=self.user, file=file_obj, original_filename=filename)
            instance = DeliveryInvoice(invoice_excel=invoice_excel)
            instance.save()

    self.assertTrue(signal_mock_handler.called)

Сообщение об ошибке

....
File "/Users/mhjeon/.pyenv/versions/3.6.0/envs/modernlab/lib/python3.6/site-packages/boto/auth.py", line 1070, in _wrapper
if test in self.host:

TypeError: argument of type 'NoneType' is not iterable

Код работал несколько дней назад, но после некоторого рефакторинга кода, который, я считаю, не связан с моделями заказов, он внезапно не смог вызвать метод FilerModel.save() django-filer. Что может быть не так?/

0 ответов

Другие вопросы по тегам