py.test:在Jenkins中显示局部变量

时间:2017-12-06 12:20:59

标签: python django jenkins pytest sentry

到目前为止,我们通过Jenkins致电py.test

如果测试失败,我们会看到像这样的通常的堆栈跟踪

Traceback (most recent call last):
  File "/home/u/src/foo/bar/tests/test_x.py", line 36, in test_schema_migrations
    errors, out))
AssertionError: Unknown output: ["Migrations for 'blue':", ...] 

如果我能看到django调试页面中的局部变量(参见https://djangobook.com/wp-content/uploads/figure2_3a.png),那真的很棒。

....但是如果我想看到它们,它们应该只是可见的。我想这意味着我需要一种不同于文本的格式。也许HTML?

有没有办法启用它?

我从未使用过Sentry工具。但是AFAIK可以显示带有局部变量的精美回溯。

1 个答案:

答案 0 :(得分:8)

使用-l / --showlocals选项:

pytest --showlocals # show local variables in tracebacks
pytest -l           # show local variables (shortcut)

示例:

    def foo():
        a = 1
>       assert 0
E       assert 0

a          = 1

test_foo.py:8: AssertionError

请参阅more details in the doc