加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
setup.cfg 1.17 KB
一键复制 编辑 原始数据 按行查看 历史
VIGNESHinZONE 提交于 2021-06-27 17:30 . add markers
[tool:pytest]
markers =
jax: marks tests for deepchem-jax only (deselect with '-m "not jax"')
torch: marks tests for deepchem-torch only (deselect with '-m "not torch"')
tensorflow: marks tests for deepchem-torch only (deselect with '-m "not tensorflow"')
slow: marks tests as slow (deselect with '-m "not slow"')
serial
[mypy]
ignore_missing_imports = True
[flake8]
ignore =
E111, # Indentation is not a multiple of four
E114, # Indentation is not a multiple of four (comment)
E121, # continuation line under-indented for hanging indent
E124, # Closing bracket does not match visual indentation
E126, # continuation line over-indented for hanging indent
E125, # Continuation line with same indent as next logical line
E127, # Continuation line over-indented for visual indent
E129, # Visually indented line with same indent as next logical line
E502, # the backslash is redundant between bracket
W503, # Line break before binary operator
W504, # Line break after binary operator
W605, # invalid escape sequenc
E722 # do not use bare 'except'
max-line-length = 300
[yapf]
based_on_style = google
indent_width = 2
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化