https://github.com/pymc-devs/pymc3
Raw File
Tip revision: 4c92adf9720f6578e51b9ef21e33c29871c67a83 authored by Ben Mares on 17 September 2022, 12:00:28 UTC
Run tests when modifying requirements.txt
Tip revision: 4c92adf
pyproject.toml
[tool.pytest.ini_options]
minversion = "6.0"
xfail_strict=true

[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