如何在运行配置中传递多个 pytest 命令行选项

问题描述

问题

如何在 PyCharm 中传递多个 pytest 命令行选项?

问题

设置 pytest 日志记录选项 --log-level=DEBUG --log-cli=True --log-cli-level=DEBUG 失败,并显示 PyCharm 运行配置错误。

enter image description here

Launching pytest with arguments --log-level=DEBUG --log-cli=True --log-cli-level=DEBUG ****/test_040_objective_sigmoid.py in ****

ERROR: usage: _jb_pytest_runner.py [options] [file_or_dir] [file_or_dir] [...]
_jb_pytest_runner.py: error: unrecognized arguments: --log-cli=True
  inifile: None
  rootdir: ****

使用单个参数,它运行没有错误。

enter image description here

Launching pytest with arguments --log-level=DEBUG ****test_040_objective_sigmoid.py in ****

============================= test session starts ==============================
platform linux -- Python 3.8.5,pytest-6.2.2,py-1.10.0,pluggy-0.13.1 -- ****/bin/python
cachedir: .pytest_cache
rootdir: ****
plugins: pytest_check-1.0.1
collecting ... collected 5 items

从命令行运行 pytest 时,pytest 日志选项起作用。

$ pytest --log-level=DEBUG --log-cli=True --log-cli-level=DEBUG --verbose --cache-clear -x ${DIR}
=============================================================================================== 
test session starts
===============================================================================================
platform linux -- Python 3.8.5,pluggy-0.13.1
...

PyCharm 中的 pytest 设置

enter image description here

参考资料

解决方法

pytest 在命令行选项前混合使用单 - 和双 -- 连字符,有些不带连字符。在您的示例中,只有 --log-level 使用双连字符。

剩下的两个选项 log_clilog_cli_level 没有任何前导连字符,并且在名称中间有一个下划线。这两个也是 "Configuration Options",可能需要以 -o 为前缀。

可以在 Command-line Flags 中找到完整的参考。

所以代替:

--log-level=DEBUG --log-cli=True --log-cli-level=DEBUG

试试:

--log-level=DEBUG -o log_cli=True -o log_cli_level=DEBUG

screenshot of run configurations

C:\path_to your_project\venv\Scripts\python.exe "C:\Program Files\JetBrains\PyCharm 2019.3.2\plugins\python\helpers\pycharm\_jb_pytest_runner.py" --path C:/path_to your_project/tests/basic_test.py -- --log-level=DEBUG -v -o log_cli=True -o log_cli_level=DEBUG
Testing started at 3:05 AM ...
Launching pytest with arguments --log-level=DEBUG -v -o log_cli=True -o log_cli_level=DEBUG C:/path_to your_project/tests/basic_test.py in C:\path_to your_project

============================= test session starts =============================
platform win32 -- Python 3.9.0,pytest-6.2.2,py-1.10.0,pluggy-0.13.1 -- C:\path_to your_project\venv\Scripts\python.exe
cachedir: .pytest_cache
rootdir: C:\path_to your_project,configfile: pytest.ini
collecting ... collected 1 item

tests/basic_test.py::test_validate_args PASSED                      [100%]

============================== 1 passed in 0.02s ==============================

Process finished with exit code 0

相关问答

依赖报错 idea导入项目后依赖报错,解决方案:https://blog....
错误1:代码生成器依赖和mybatis依赖冲突 启动项目时报错如下...
错误1:gradle项目控制台输出为乱码 # 解决方案:https://bl...
错误还原:在查询的过程中,传入的workType为0时,该条件不起...
报错如下,gcc版本太低 ^ server.c:5346:31: 错误:‘struct...