标签: python
我一直在研究测试框架,并在源文件中使用 pydocstyle 工具(以前称为 pep257 )。默认情况下,它会忽略名称以test_开头的源文件,这在我的情况下是不幸的。
test_
如何在这些文件上运行该工具?
我尝试过pydocstyle --match='test_',但它没有用。
pydocstyle --match='test_'
此处提供了文档:http://pep257.readthedocs.io/en/latest/usage.html
答案 0 :(得分:1)
--match='test_'会在名为test_的文件上运行该工具。
--match='test_'
请--match='.*\.py'匹配以.py结尾的所有文件名。
--match='.*\.py'
.py