首页 > 解决方案 > Pytest:最后输出更少?

问题描述

我通过 PyCharm 执行 pytest。

输出的底部如下所示:

=================================== FAILURES ===================================
__________________ test_get_landing_page_breadcrumb_for_foos ___________________

    @pytest.mark.django_db
    def test_get_landing_page_breadcrumb_for_foos():
        location = Location.objects.create(canonical_name='test-location', name='Test Location', search_volume=1000)
        term = Term.objects.create(canonical_name='test-term', name='Test Term', search_volume=1500)
>       assert 0, get_landing_page_breadcrumb_for_foos(location.canonical_name,
                                             term.canonical_name, PortalFactory.build())
E       AssertionError: [{'@context': 'http://schema.org', '@type': 'BreadcrumbList', 'itemListElement': [{'@type': 'ListItem', 'item': 'https.../test-location/', 'name': 'test-location', 'position': 2}, {'@type': 'ListItem', 'name': 'test-term', 'position': 3}]}]
E       assert 0

test_search_pages.py:12: AssertionError
---------------------------- Captured stdout setup -----------------------------
Operations to perform:
  Synchronize unmigrated apps: admin_ordering, company_search, compressor, corsheaders, debug_toolbar, django_countries, django_extensions, ...
  Apply all migrations: admin, auth, cms, contenttypes, ....
Synchronizing apps without migrations:
  Creating tables...
    Running deferred SQL...
Running migrations:
  No migrations to apply.
Cache table 'file_resubmit_cache' already exists.
---------------------------- Captured stderr setup -----------------------------
Using existing test database for alias 'default' ('test_foofirm')...
=========================== short test summary info ============================
FAILED test_search_pages.py::test_get_landing_page_breadcrumb_for_foos - Asse...
============================== 1 failed in 4.42s ===============================

Process finished with exit code 1


Assertion failed

Assertion failed

我想减少最后的输出,因为我使用“滚动到结束”来查看重要的行。

我希望输出的结尾看起来像这样:

=================================== FAILURES ===================================
__________________ test_get_landing_page_breadcrumb_for_foos ___________________

    @pytest.mark.django_db
    def test_get_landing_page_breadcrumb_for_foos():
        location = Location.objects.create(canonical_name='test-location', name='Test Location', search_volume=1000)
        term = Term.objects.create(canonical_name='test-term', name='Test Term', search_volume=1500)
>       assert 0, get_landing_page_breadcrumb_for_foos(location.canonical_name,
                                             term.canonical_name, PortalFactory.build())
E       AssertionError: [{'@context': 'http://schema.org', '@type': 'BreadcrumbList', 'itemListElement': [{'@type': 'ListItem', 'item': 'https.../test-location/', 'name': 'test-location', 'position': 2}, {'@type': 'ListItem', 'name': 'test-term', 'position': 3}]}]
E       assert 0

test_search_pages.py:12: AssertionError

有时“捕获的标准输出”很重要。但我不希望处于最底层。有没有办法将“捕获的标准输出”移动到“失败”上方?

---------------------------- Captured stdout setup -----------------------------
Operations to perform:
  Synchronize unmigrated apps: admin_ordering, company_search, compressor, corsheaders, debug_toolbar, django_countries, django_extensions, ...
  Apply all migrations: admin, auth, cms, contenttypes, ....
Synchronizing apps without migrations:
  Creating tables...
    Running deferred SQL...
Running migrations:
  No migrations to apply.
Cache table 'file_resubmit_cache' already exists.
---------------------------- Captured stderr setup -----------------------------
Using existing test database for alias 'default' ('test_foofirm')...
=========================== short test summary info ============================
FAILED test_search_pages.py::test_get_landing_page_breadcrumb_for_foos - Asse...
============================== 1 failed in 4.42s ===============================

Process finished with exit code 1


Assertion failed

Assertion failed

标签: pythonpytestpytest-django

解决方案


看起来您想了解更多有关Pytest 中的详细命令的信息

如果您希望输出不那么冗长,请尝试pytest -qpytest --quiet


推荐阅读