https://github.com/pymc-devs/pymc3
Revision a3ec9a5b7b888411d4a30c77a5ca3ff47c0bb068 authored by Ricardo Vieira on 02 October 2023, 11:49:25 UTC, committed by Ricardo Vieira on 02 October 2023, 14:27:42 UTC
1 parent 55e8fe9
Raw File
Tip revision: a3ec9a5b7b888411d4a30c77a5ca3ff47c0bb068 authored by Ricardo Vieira on 02 October 2023, 11:49:25 UTC
Fix mypy failure
Tip revision: a3ec9a5
pyproject.toml
[tool.pytest.ini_options]
minversion = "6.0"
xfail_strict=true
addopts = [
    "--color=yes",
]

[tool.black]
line-length = 100

[tool.coverage.report]
exclude_lines = [
  "pragma: nocover",
  "raise NotImplementedError",
  "if TYPE_CHECKING:",
]

[tool.nbqa.mutate]
isort = 1
black = 1
pyupgrade = 1
back to top