PyCharm:无法运行文件夹'中的所有测试

2022-05-17 00:00:00 python-unittest pycharm

问题描述

我正尝试在PyCharm中运行我的整个测试套件。所有测试文件都位于单个文件夹中。我可以单独运行这些文件,但当我使用"All in Folders"创建运行配置时,PyCharm找不到任何测试。

记录的消息包括:

C:Python36python.exe "C:Program Files (x86)JetBrainsPyCharm Community Edition 2016.3.2helperspycharmutrunner.py" C:UsersJohnPycharmProjectsKojak	ests\_args_separator_.*.py$ true
Testing started at 14:56 ...

Process finished with exit code 0
Empty test suite. 

我注意到路径中的_args_separator_,那么这是关于什么的?

我运行的是装有PyCharm 2016.3和Python2.6的Windows7


解决方案

如果我在为Python测试创建运行/调试配置时选择了Nosetest,那么它对我是有效的。你还需要安装管子安装鼻孔。(我正在运行PyCharm 2017.1,但不确定是否需要)

相关文章