加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
pytest.ini 585 Bytes
一键复制 编辑 原始数据 按行查看 历史
# Configuration of py.test
[pytest]
addopts=-v
-n 2
--durations=20
# Do not run tests in the build folder
norecursedirs= build
# PEP-8 The following are ignored:
# E501 line too long (82 > 79 characters)
# E402 module level import not at top of file - temporary measure to continue adding ros python packaged in sys.path
# E731 do not assign a lambda expression, use a def
# W503 line break occurred before a binary operator
pep8ignore=* E402 \
* E731 \
* W503
# Enable line length testing with maximum line length of 85
pep8maxlinelength = 85
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化