也在以' test _'开头的文件名上执行pydocstyle。

时间:2017-09-22 15:35:34

标签: python

我一直在研究测试框架,并在源文件中使用 pydocstyle 工具(以前称为 pep257 )。默认情况下,它会忽略名称以test_开头的源文件,这在我的情况下是不幸的。

如何在这些文件上运行该工具?

我尝试过pydocstyle --match='test_',但它没有用。

此处提供了文档:http://pep257.readthedocs.io/en/latest/usage.html

1 个答案:

答案 0 :(得分:1)

--match='test_'会在名为test_的文件上运行该工具。

--match='.*\.py'匹配以.py结尾的所有文件名。