VS Code / Python / Отладка теста pytest с помощью отладчика

Aug 27 2020

Как я могу заставить VS Code поместить меня в отладчик в момент сбоя при запуске тестов с pytest?

Pytest улавливает все ошибки и утверждения, а код VS вызывает отладчик только для неперехваченных ошибок (я могу изменить это на возбужденное исключение, но затем он останавливается на всем, что возникает при попытке).

Я пытался установить --pdbв качестве аргумента pytest, но это приводит к ошибкам:

============================= test session starts =============================
platform win32 -- Python 3.8.1, pytest-5.3.2, py-1.8.1, pluggy-0.13.1
rootdir: c:\Projects\debugtest, inifile: pytest.ini
collected 1 item

test.py F
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> traceback >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
Traceback (most recent call last):
  File "C:\Projects\debugtest\test.py", line 4, in test_with_assert
    assert 42==2.71828
AssertionError: assert 42 == 2.71828
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> entering PDB >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>

>>>>>>>>>>>>>>>>>> PDB post_mortem (IO-capturing turned off) >>>>>>>>>>>>>>>>>>
> c:\projects\debugtest\test.py(4)test_with_assert()
-> assert 42==2.71828
(Pdb)

PYDEV DEBUGGER WARNING:
sys.settrace() should not be used when the debugger is being used.
This may cause the debugger to stop working correctly.
If this is needed, please check: 
http://pydev.blogspot.com/2007/06/why-cant-pydev-debugger-work-with.html
to see how to restore the debug tracing back correctly.
Call Location:
  File "C:\Program Files\Python38\lib\bdb.py", line 359, in set_quit
    sys.settrace(None)


- generated xml file: C:\Users\tzhgfma1\AppData\Local\Temp\tmp-24044mEWMyB1nPYAu.xml -
!!!!!!!!!!!!!!!!!! _pytest.outcomes.Exit: Quitting debugger !!!!!!!!!!!!!!!!!!!
============================== 1 failed in 0.43s ==============================

У меня есть очень простой проект для тестирования:

.vscode \ settings.json

{
    "python.testing.pytestArgs": [
        "--pdb"
    ],
    "python.testing.unittestEnabled": false,
    "python.testing.nosetestsEnabled": false,
    "python.testing.pytestEnabled": true,
    "git.ignoreLimitWarning": false
}

.vscode \ launch.json

{
    // Use IntelliSense to learn about possible attributes.
    // Hover to view descriptions of existing attributes.
    // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
    "version": "0.2.0",
    "configurations": [
        
        
        {
            "name": "Python: Current File",
            "type": "python",
            "request": "launch",
            "program": "${file}", "console": "internalConsole", "justMyCode":false }, { "name": "Python: Attach using Process Id", "type": "python", "request": "attach", "processId": "${command:pickProcess}",
            "justMyCode": false
        },
        {
            "name": "Debug Tests",
            "type": "python",
            "request": "test",
            "console": "internalConsole",
            "justMyCode": false
        }
    ]
}

pytest.ini

[pytest]

python_files = test*.py
python_classes = Test
python_functions = test
addopts = --tb=native
console_output_style = classic
junit_duration_report = call
filterwarnings =
    ignore::RuntimeWarning

и test.py:

def test_with_assert():
    assert 42==2.71828

Как --pdbправильно это сделать? Или как мне войти в отладчик при утверждении или ошибке?

Ответы

2 JillCheng Aug 31 2020 at 07:54

Если вы хотите войти в режим отладки при запуске pytest в VSCode и остаться в строке кода, вы можете щелкнуть ' Debug Test' в верхней части метода после выбора теста pytest, как показано на снимке экрана:

Кроме того, "python.testing.pytestArgs": [],в .vscode\settings.jsonэто путь к папке испытанного файла, например, мой тестовый файл находится в Test_ccпод aпапкой.

>      "python.testing.pytestArgs": [
>             "a/Test_cc"
>         ],

Если это не то, что вам нужно, дайте мне знать и подробно опишите ваши потребности.

Ссылка: Отладочные тесты .

Обновить:

Обычно, когда мы отлаживаем тест в VSCode, без установки для него точки останова, отображается только результат теста. (успех или неудача). В ВЫХОДЕ консоли будет отображаться только соответствующая тестовая информация.

Когда я использую расширение ' Python Test Explorer for Visual Studio code', на консоли будет отображаться информация об отладочном тесте с указанием проблемы.

mgf Sep 05 2020 at 07:53

Этот ответ действительно решает проблему. Хотелось бы, чтобы был более простой способ, либо из Visual Studio Code, либо с помощью простого raiseфлага из pytest.