File tree Expand file tree Collapse file tree 3 files changed +31
-2
lines changed Expand file tree Collapse file tree 3 files changed +31
-2
lines changed Original file line number Diff line number Diff line change @@ -278,7 +278,7 @@ source = [
278278branch = true
279279
280280[tool .coverage .report ]
281- fail_under = 0 # TODO
281+ fail_under = 0 # TODO; old value: 90
282282skip_empty = true
283283show_missing = true
284284exclude_also = [
Original file line number Diff line number Diff line change 11"""
2- Learning prior distributions for model parameters in a Bayesian model based on expert information.
2+ A framework for expert prior elicitation in Python.
3+
4+ Learn prior distributions for parameters in a Bayesian
5+ model based on expert information.
36"""
47
58import importlib .metadata
69
710__version__ = importlib .metadata .version ("pymc_elicito" )
11+
12+ __all__ = ["hello_world" ]
13+
14+
15+ def hello_world () -> str :
16+ """
17+ Print hello world
18+
19+ Returns
20+ -------
21+ :
22+ hello world
23+ """
24+ return "hello world"
Original file line number Diff line number Diff line change 1+ """
2+ Unit test for __init__.py
3+ """
4+
5+ from pymc_elicito import hello_world
6+
7+
8+ def test_hello_world ():
9+ observed = hello_world ()
10+ expected = "hello world"
11+
12+ assert observed == expected
You can’t perform that action at this time.
0 commit comments