ValueError: 运行测试时无法解析相关模型 u'app.model'

Posted

技术标签:

【中文标题】ValueError: 运行测试时无法解析相关模型 u\'app.model\'【英文标题】:ValueError: Related model u'app.model' cannot be resolved when running testsValueError: 运行测试时无法解析相关模型 u'app.model' 【发布时间】:2018-03-12 17:24:05 【问题描述】:

我正在尝试在 Django 项目(Django 版本 1.11.4)上运行一些测试 使用 Python 3.5.0。

我的项目中有 2 个应用程序:上传和 testgen。

这些是我的模型:

(这里只有特殊字段,比如关系字段,其余字段主要是CharField、PositiveIntegerField和BooleanField。)

上传\models.py

(简化版)

class Document(models.Model):
    (any relationship fields)


class Word(models.Model):
    synonyms = models.ManyToManyField("self")
    antonyms = models.ManyToManyField("self")


class Sentence(models.Model):
    words = models.ManyToManyField(Word)


class Paragraph(models.Model):
    sentences = models.ManyToManyField(Sentence)


class Text(models.Model):
    document = models.ForeignKey(Document, on_delete=models.CASCADE)
    paragraphs = models.ManyToManyField(Paragraph)

testgen\models.py

(简化版)

class Issue(models.Model):
    content = models.OneToOneField(Sentence,
                                   related_name="issue_content",
                                   null=True)
    question = models.OneToOneField(Sentence, null=True)


class FillableIssue(Issue):
    replaceable_words = models.ManyToManyField(Word)


class StatementIssue(Issue):
    replaceable_words = models.ManyToManyField(Word)


class AppTest(models.Model):
    text = models.ForeignKey(Text, null=True)
    fillable_issues = models.ManyToManyField(FillableIssue)
    statement_issues = models.ManyToManyField(StatementIssue)

testgen\tests.py

from django.test import TestCase
from testgen.models import AppTest


class AppTestTestCase(TestCase):

    def test_apptest_has_positive_number_issues(self):

        """
            has_positive_number_issues() returns True
            if the test's number issues is greater than zero.
        """

        app_tests = AppTest.objects.get_queryset().all()
        for app_test in app_tests:
            self.assertIs(app_test.has_positive_number_issues(), True)

项目设置文件:

INSTALLED_APPS = [
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
'uploads',
'testgen',
]

注意:我将 testgen 模型中的上传模型用于应用程序逻辑。

我怀疑模型的名称可能是问题所在('AppTest')

可以在截图图像中检查回溯。

first capture second capture

【问题讨论】:

【参考方案1】:

我已从其他应用程序中删除所有迁移文件并运行 makemigrations 并再次迁移。

现在一切正常。

【讨论】:

以上是关于ValueError: 运行测试时无法解析相关模型 u'app.model'的主要内容,如果未能解决你的问题,请参考以下文章

ValueError: 无法解析相关模型 u'app.model'

Django:无法解析相关模型“users.UserProfile”

Scikit Learn - ValueError:操作数无法一起广播

Django 相关模型无法解析

尝试连接 keras 模型:ValueError:无法将 NumPy 数组转换为张量(不支持的对象类型浮点数)

为啥我在第二次运行测试时在 Mongoose 中收到错误“一旦编译后无法覆盖模型”?