We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 60a375b commit 88402a7Copy full SHA for 88402a7
pyproject.toml
@@ -1,4 +1,5 @@
1
[tool.pytest.ini_options]
2
+testpaths = ["tests"]
3
minversion = "6.0"
4
xfail_strict = true
5
addopts = ["--color=yes"]
@@ -9,7 +10,6 @@ line-length = 100
9
10
[tool.ruff.lint]
11
ignore-init-module-imports = true
12
ignore = [
- "E731", # Do not assign a lambda expression, use a def
13
"F841", # Local variable name is assigned to but never used
14
]
15
@@ -22,3 +22,13 @@ exclude_lines = [
22
"raise NotImplementedError",
23
"if TYPE_CHECKING:",
24
25
+
26
+[tool.coverage.run]
27
+omit = ["*examples*"]
28
29
+[tool.versioneer]
30
+VCS = "git"
31
+style = "pep440"
32
+versionfile_source = "pymc/_version.py"
33
+versionfile_build = "pymc/_version.py"
34
+tag_prefix = "v"
setup.cfg
0 commit comments