加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
pytest.ini 466 Bytes
一键复制 编辑 原始数据 按行查看 历史
llody_55 提交于 2021-05-25 17:37 . init
# Configuration of py.test
[pytest]
addopts=-v
-n 2
--durations=10
--cov-report term-missing
# Do not run tests in the build folder
norecursedirs= build
# PEP-8 The following are ignored:
# 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
pep8ignore=* E402 \
* E731 \
* W503
pep8maxlinelength = 88
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化