为什么 django-nose 没有在我的模型中运行文档测试?

发布于 2024-08-28 01:14:07 字数 375 浏览 8 评论 0原文

我正在尝试将 doctests 与 django-nose 一起使用。我的所有文档测试都在运行,除了模型中的任何文档测试(除非它是抽象的)。

class TestModel1(models.Model):
    """
    >>> print 'pass'
    pass
    """
    pass

class TestModel2(models.Model):
    """
    >>> print 'pass'
    pass
    """
    class Meta:
        abstract = True
    pass

第一个 doctest 不运行,第二个则运行。这是为什么呢?

I'm trying to use doctests with django-nose. All my doctests are running, except not any doctests within a model (unless it is abstract).

class TestModel1(models.Model):
    """
    >>> print 'pass'
    pass
    """
    pass

class TestModel2(models.Model):
    """
    >>> print 'pass'
    pass
    """
    class Meta:
        abstract = True
    pass

The first doctest does not run and the second does. Why is this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

沫尐诺 2024-09-04 01:14:07

你有可能被这个咬到吗? http://github.com/jbalogh/django-nose/issues/2
如果是这样,请尝试升级 django-nose

Any chance you're getting bitten by this? http://github.com/jbalogh/django-nose/issues/2
If so, try upgrading django-nose

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文