You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+14Lines changed: 14 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -121,6 +121,20 @@ We recommend that your contribution complies with the following guidelines befor
121
121
122
122
- All public methods must have informative docstrings with sample usage when appropriate.
123
123
124
+
- Example usage in docstrings is tested via doctest, which can be run via
125
+
126
+
```bash
127
+
make doctest
128
+
```
129
+
130
+
- Doctest can also be run directly via pytest, which can be helpful to run only specific tests during development. The following commands run all doctests, only doctests in the pymc_models module, and only the doctests forthe `ModelBuilder` classin pymc_models:
- To indicate a work in progress please mark the PR as `draft`. Drafts may be useful to (1) indicate you are working on something to avoid duplicated work, (2) request broad review of functionality or API, or (3) seek collaborators.
125
139
126
140
- All other tests pass when everything is rebuilt from scratch. Tests can be run with:
0 commit comments